@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Open+Sans:wght@300;400;600;700&display=swap');
/* CSS Variables */
:root {
  --dark: #0a0a0a;
  --darker: #050505;
  --purple: #7C3AED;
  --purple-dark: #6D28D9;
  --purple-light: #8B5CF6;
  --grey: #a3a3a3;
  --grey-dark: #525252;
  --white: #ffffff;
  --off-white: #f5f5f5;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Special Elite', monospace;
  font-weight: 400;
  line-height: 1.2;
}
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.nav {
  background: var(--darker);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Special Elite', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
}

.logo-icon {
  height: 2rem !important;
  width: auto;
  display: block;
  margin-right: 0.5rem;
  max-width: 2rem !important;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.donate-btn {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s;
}

.donate-btn:hover {
  background: var(--purple-light);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(124,58,237,0.15) 0%, transparent 80%),
    linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8)),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%230a0a0a"/><path d="M0 0L100 100M100 0L0 100" stroke="%237C3AED" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: auto, auto, 100px 100px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-eyebrow {
  font-family: 'Special Elite', monospace;
  font-size: 0.9rem;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Special Elite', monospace;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.highlight {
  color: var(--purple);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124,58,237,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--grey-dark);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--purple);
  background: rgba(124,58,237,0.1);
}

/* Section */
.section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Special Elite', monospace;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
}

/* Mission */
.mission {
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mission-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  background: rgba(124,58,237,0.03);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}

.mission-card:hover {
  border-color: var(--purple);
  background: rgba(124,58,237,0.08);
  transform: translateY(-4px);
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  font-family: 'Special Elite', monospace;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.mission-card p {
  color: var(--grey);
  line-height: 1.7;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature h3 {
  font-family: 'Special Elite', monospace;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--purple);
}

.feature p {
  color: var(--grey);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(109,40,217,0.1));
  border: 1px solid rgba(124,58,237,0.2);
  border-left: none;
  border-right: none;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Special Elite', monospace;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--grey);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Special Elite', monospace;
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  color: var(--grey);
  text-decoration: none;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--purple);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--grey-dark);
  font-size: 0.9rem;
}

/* About Page */
.vision-box {
  background: rgba(124,58,237,0.05);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 8px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.vision-box p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vision-box ul {
  list-style: none;
  padding-left: 0;
}

.vision-box li {
  color: var(--grey);
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.vision-box li:before {
  content: "→";
  color: var(--purple);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.why-section {
  background: rgba(124,58,237,0.02);
  padding: 5rem 0;
}

.feature-grid-6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

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

.feature-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--grey);
  line-height: 1.6;
}

.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}

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

.team-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(124,58,237,0.3);
  display: block;
}

.team-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.team-bio {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.team-link {
  display: inline-block;
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.team-link:hover {
  color: var(--purple-light);
}

.structure-section {
  background: rgba(124,58,237,0.02);
  padding: 5rem 0;
}

.structure-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.structure-box h2 {
  color: var(--white);
  font-family: 'Special Elite', monospace;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.structure-box p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.structure-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.structure-box li {
  color: var(--grey);
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.structure-box li:before {
  content: "•";
  color: var(--purple);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.highlight-text {
  color: var(--purple);
  font-weight: 600;
  font-size: 1.1rem;
}

.support-section {
  padding: 5rem 0;
  text-align: center;
}

.support-content {
  max-width: 600px;
  margin: 0 auto;
}

.support-text {
  color: var(--grey);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
}

.footer-logo {
  font-family: 'Special Elite', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
}

.nav-links .active {
  color: var(--purple);
  font-weight: 600;
}

/* Press Page */
.press-featured-grid {
  display: grid;
  grid-template-columns: minmax(auto, 900px);
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.press-card-large {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 8px;
  padding: 3rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  position: relative;
  max-width: 800px;
  justify-self: center;
}

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

.press-source {
  display: inline-block;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.press-card-large h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.press-author {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.press-date-small {
  color: var(--grey-dark);
  font-size: 0.85rem;
}

.press-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 1rem;
  box-sizing: border-box;
  justify-self: center;
  max-width: 900px;
  width: 100%;
}

.press-item:hover {
  border-color: var(--purple);
  transform: translateX(4px);
}

.press-source-badge {
  display: inline-block;
  background: rgba(124,58,237,0.2);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.press-item-content h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.press-link {
  color: var(--purple);
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.press-link:hover {
  transform: translateX(4px);
}

.historical-archive {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.historical-archive h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.media-inquiries-section {
  background: rgba(124,58,237,0.02);
  padding: 5rem 0;
  text-align: center;
}

/* Library Page */
.library-header {
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, transparent 60%);
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-icon-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-icon {
  font-size: 3rem;
  line-height: 1;
}

.section-title-left {
  font-family: 'Special Elite', monospace;
  font-size: 2.2rem;
  color: var(--white);
  margin: 0;
}

.section-desc {
  color: var(--grey);
  margin: 0.5rem 0 0 0;
}

.highlight-card {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 700px;
}

.highlight-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.highlight-card p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.card-link-btn {
  display: inline-block;
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.card-link-btn:hover {
  color: var(--purple-light);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0 4rem;
}

.media-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.2);
}

.media-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.media-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.media-info h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.media-author {
  color: var(--purple);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.media-year {
  color: var(--grey-dark);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.media-desc {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: auto;
}

.books-section {
  background: rgba(124,58,237,0.02);
  padding: 4rem 0;
}

.films-section {
  padding: 4rem 0;
}

.authors-section {
  background: rgba(124,58,237,0.02);
  padding: 4rem 0;
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.author-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.author-card.featured {
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.05);
}

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

.author-card .badge {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  /* removed: position: absolute; top: 1rem; right: 1rem; */
}

.author-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(124,58,237,0.3);
}

.author-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.author-card p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.author-link {
  display: inline-block;
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.author-link:hover {
  color: var(--purple-light);
}

.suggestion-section {
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  font-family: 'Special Elite', monospace;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Project Pages */
.project-section {
  padding: 4rem 0;
}

.project-section-alt {
  padding: 4rem 0;
  background: rgba(124,58,237,0.02);
}

.project-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.project-container.reverse {
  direction: rtl;
}

.project-container.reverse > * {
  direction: ltr;
}

.project-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.project-content {
  color: var(--grey);
}

.project-label {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.project-content h2 {
  font-family: 'Special Elite', monospace;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.project-tagline {
  color: var(--purple);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.project-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.purple-text {
  color: var(--purple);
}

/* Partner Section */
.partner-section {
  background: rgba(124,58,237,0.02);
  padding: 5rem 0;
  text-align: center;
}

.partner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    font-size: 1rem;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .donate-btn {
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .nav-container {
    position: relative;
  }
  
  .logo {
    font-size: 1.2rem;
    padding: 0.4rem 0.6rem;
  }
  
  .logo-icon {
    height: 1.5rem !important;
    margin-right: 0.4rem;
    max-width: 1.5rem !important;
  }
  
  .nav .logo-icon,
  .nav-container .logo-icon {
    height: 1.5rem !important;
    max-height: 1.5rem !important;
    width: auto !important;
    max-width: 1.5rem !important;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }
  
  .page-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .project-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-container.reverse {
    direction: ltr;
  }
  
  .project-buttons {
    flex-direction: column;
  }
  
  .card img,
  .card-grid img {
    max-height: 250px !important;
  }
  
  .project-image img {
    max-height: 200px !important;
  }
  
  .media-card img {
    height: 250px !important;
  }
  
  .author-card img {
    width: 100px;
    height: 100px;
  }
  
  .media-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .authors-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .section-icon {
    font-size: 2.5rem;
  }
  
  .feature-grid-6 {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-portrait {
    width: 150px;
    height: 150px;
  }
  
  .press-card-large {
    padding: 2rem;
  }
  
  .press-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .press-source-badge {
    justify-self: center;
  }
  
  .partner-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
  }
  
  .logo-icon {
    height: 1.25rem !important;
    margin-right: 0.35rem;
    max-width: 1.25rem !important;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .page-subtitle {
    font-size: 0.9rem;
  }
  
  .card-grid {
    gap: 1rem;
  }
  
  .mission-grid,
  .features-grid {
    grid-template-columns: 1fr !important;
  }
  
  .nav-links {
    padding: 1rem 1.5rem;
  }
  
  .nav .logo-icon,
  .nav-container .logo-icon {
    height: 1.25rem !important;
    max-height: 1.25rem !important;
    width: auto !important;
    max-width: 1.25rem !important;
  }
  
  .card img,
  .card-grid img {
    max-height: 180px !important;
  }
  
  .project-image img {
    max-height: 150px !important;
  }
  
  .section img:not(.logo-icon),
  .container img:not(.logo-icon) {
    max-height: 200px !important;
  }
  
  .media-card img {
    height: 200px !important;
  }
  
  .author-card img {
    width: 80px;
    height: 80px;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .authors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section-icon {
    font-size: 2rem;
  }
  
  .section-icon-header {
    gap: 1rem;
  }
  
  .section-title-left {
    font-size: 1.8rem;
  }
  
  .team-portrait {
    width: 120px;
    height: 120px;
  }
  
  .press-card-large h3 {
    font-size: 1.5rem;
  }
}

/* Page Styles */
.section-eyebrow {
  font-family: 'Special Elite', monospace;
  color: var(--purple);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--darker), var(--dark));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-title {
  font-family: 'Special Elite', monospace;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--grey);
  max-width: 700px;
  margin: 0 auto;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content h2 {
  font-family: 'Special Elite', monospace;
  color: var(--white);
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}

.content h3 {
  font-family: 'Special Elite', monospace;
  color: var(--purple);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.content p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content ul {
  list-style: none;
  padding-left: 0;
}

.content li {
  color: var(--grey);
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.content li:before {
  content: "→";
  color: var(--purple);
  position: absolute;
  left: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card-grid img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

/* Universal image constraints for all sections */
.section img,
.container img {
  max-width: 100%;
  height: auto;
}

.card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.card img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
}

.card:hover {
  border-color: var(--purple);
  background: rgba(124,58,237,0.05);
  transform: translateY(-4px);
}

.card h3 {
  font-family: 'Special Elite', monospace;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.2s;
}

.card-link:hover {
  color: var(--purple-light);
}
