/* ==========================================================================
   MAKE AI BETTER — Design System & Stylesheet (2026 Modern Aesthetic)
   ========================================================================== */

:root {
  /* Color Palette: Deep Space & Cyber Research */
  --bg-primary: #07080c;
  --bg-secondary: #0d0f18;
  --bg-card: rgba(16, 19, 31, 0.75);
  --bg-card-hover: rgba(23, 28, 48, 0.85);
  --bg-input: rgba(13, 16, 27, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-glow-cyan: rgba(0, 240, 255, 0.3);
  --border-glow-purple: rgba(138, 43, 226, 0.3);

  /* Accents */
  --accent-cyan: #00f0ff;
  --accent-cyan-glow: rgba(0, 240, 255, 0.4);
  --accent-purple: #8a2be2;
  --accent-purple-glow: rgba(138, 43, 226, 0.4);
  --accent-green: #00ff88;
  --accent-green-glow: rgba(0, 255, 136, 0.35);
  --accent-amber: #ffb703;
  --accent-red: #ff3366;

  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Text Colors */
  --text-primary: #f0f4fc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-link: #38bdf8;

  /* Transitions & Shadows */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow-cyan: 0 0 25px rgba(0, 240, 255, 0.25);
  --shadow-glow-purple: 0 0 25px rgba(138, 43, 226, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #111528 0%, #07080c 55%, #050608 100%);
}

/* Background Canvas */
#neural-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Ambient Glow Orbs */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.glow-top {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), rgba(138, 43, 226, 0.12), transparent 70%);
}
.glow-bottom {
  bottom: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1), rgba(0, 240, 255, 0.08), transparent 70%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #00f0ff 50%, #8a2be2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-cyan {
  background: linear-gradient(135deg, #00f0ff 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-purple {
  background: linear-gradient(135deg, #c084fc 0%, #8a2be2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-green {
  background: linear-gradient(135deg, #4ade80 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-amber {
  background: linear-gradient(135deg, #fbbf24 0%, #ffb703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}
.logo-icon.small {
  width: 26px;
  height: 26px;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.brand-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-link:hover {
  color: var(--accent-cyan);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width var(--transition-fast);
}
.nav-link:hover::after {
  width: 100%;
}

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

/* Language Switcher */
.lang-switch-container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2px 8px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 12px;
  transition: all var(--transition-fast);
}
.lang-btn.active {
  color: #ffffff;
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}
.lang-divider {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin: 0 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #00b4d8 50%, #8a2be2 100%);
  color: #050811;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 240, 255, 0.5);
  color: #000;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}
.btn-outline:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.04);
}
.nav-cta {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-cyan {
  background: rgba(0, 240, 255, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}
.badge-purple {
  background: rgba(138, 43, 226, 0.15);
  color: #c084fc;
  border: 1px solid rgba(138, 43, 226, 0.3);
}
.badge-green {
  background: rgba(0, 255, 136, 0.12);
  color: var(--accent-green);
  border: 1px solid rgba(0, 255, 136, 0.3);
}
.badge-amber {
  background: rgba(255, 183, 3, 0.12);
  color: var(--accent-amber);
  border: 1px solid rgba(255, 183, 3, 0.3);
}
.badge-red {
  background: rgba(255, 51, 102, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(255, 51, 102, 0.3);
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-glow-cyan);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  margin-bottom: 1.75rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 240, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 950px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-subtitle strong {
  color: var(--text-primary);
}
.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
}
.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  text-align: center;
  transition: all var(--transition-smooth);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow-cyan);
  box-shadow: var(--shadow-glow-cyan);
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Section Commons */
.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Toolbar & Filters */
.feed-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.search-box svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.search-box input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 30px;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}
.search-box input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.category-pills {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.pill-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.08);
}
.pill-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--accent-cyan);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 240, 255, 0.12);
}
.news-card:hover::before {
  opacity: 1;
}

.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.news-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.news-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.news-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.news-metrics-box {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.news-metric-item {
  display: flex;
  flex-direction: column;
}
.metric-name {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}
.metric-val {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-cyan);
}

.news-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

/* Benchmarks Section */
.benchmark-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.model-selector-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}
.model-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.8rem 1.4rem;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}
.model-tab-btn:hover {
  color: #ffffff;
  border-color: var(--border-light);
}
.model-tab-btn.active {
  background: rgba(0, 240, 255, 0.12);
  border-color: var(--accent-cyan);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.model-showcase-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  box-shadow: var(--shadow-card);
}
.showcase-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.showcase-lab {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}
.showcase-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.showcase-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.highlight-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
}

.showcase-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bar-label-wrap {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-family: var(--font-mono);
}
.bar-name { color: var(--text-secondary); }
.bar-val { font-weight: 700; color: var(--accent-cyan); }
.bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00f0ff, #8a2be2);
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.benchmark-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}
.benchmark-table th {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.benchmark-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}
.benchmark-table tr:last-child td {
  border-bottom: none;
}
.benchmark-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.score-highlight {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.pillar-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card), 0 0 25px rgba(138, 43, 226, 0.15);
}
.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pillar-icon-box svg {
  width: 26px;
  height: 26px;
}
.icon-cyan { background: rgba(0, 240, 255, 0.12); color: var(--accent-cyan); }
.icon-purple { background: rgba(138, 43, 226, 0.15); color: #c084fc; }
.icon-amber { background: rgba(255, 183, 3, 0.12); color: var(--accent-amber); }
.icon-green { background: rgba(0, 255, 136, 0.12); color: var(--accent-green); }

.pillar-title {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pillar-list li {
  position: relative;
  padding-left: 1.2rem;
}
.pillar-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

/* Manifesto Section */
.manifesto-box {
  background: linear-gradient(135deg, rgba(13, 16, 28, 0.9) 0%, rgba(20, 26, 48, 0.9) 100%);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 240, 255, 0.08);
}
.manifesto-decor {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.manifesto-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem 0;
  line-height: 1.3;
}
.manifesto-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.manifesto-text strong {
  color: var(--text-primary);
}

.newsletter-form-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 2rem;
  max-width: 580px;
  margin: 0 auto;
}
.newsletter-form-wrapper h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.newsletter-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
}
.newsletter-form input {
  flex-grow: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-form input:focus {
  border-color: var(--accent-cyan);
}
.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  display: none;
}
.form-feedback.success {
  display: block;
  color: var(--accent-green);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: #040508;
  padding: 70px 0 40px 0;
  position: relative;
  z-index: 1;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 320px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 0.5rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-col h5 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover {
  color: var(--accent-cyan);
}

/* Modal Reader */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-dialog {
  background: #0c0f1d;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 240, 255, 0.15);
  transform: scale(0.96);
  transition: transform var(--transition-smooth);
}
.modal-backdrop.open .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-title-box h3 {
  font-size: 1.4rem;
  margin: 0.4rem 0 0.2rem 0;
}
.modal-meta {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}
.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.5rem;
  transition: color var(--transition-fast);
}
.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.modal-body h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem 0;
}
.modal-body p {
  margin-bottom: 1rem;
}
.modal-body ul {
  margin: 0.5rem 0 1.25rem 1.5rem;
}
.modal-body li {
  margin-bottom: 0.4rem;
}

.modal-footer {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .model-showcase-card { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.1rem; }
  .hero-stats-grid { grid-template-columns: 1fr; }
  .manifesto-box { padding: 2.5rem 1.5rem; }
  .manifesto-title { font-size: 1.6rem; }
  .newsletter-form { flex-direction: column; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
}
