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

:root {
  --saffron: #FF6B1A;
  --saffron-light: #FF8C42;
  --green: #0A8754;
  --blue-accent: #00C2FF;
  --dark: #080810;
  --dark2: #0F0F1A;
  --dark3: #161625;
  --surface: #1A1A2E;
  --border: rgba(255,255,255,0.08);
  --text: #E8E8F0;
  --text-muted: #8888A8;
  --white: #ffffff;
  --font-body: 'Inter', sans-serif;
  --font-head: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white);
}
.logo span { color: var(--saffron); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  padding: 8px 20px;
  border: 1.5px solid var(--saffron);
  border-radius: 50px;
  color: var(--saffron) !important;
  transition: background 0.2s, color 0.2s !important;
}
.btn-nav:hover { background: var(--saffron); color: var(--dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 80% 80% at 50% -10%, #1a0a00 0%, var(--dark) 70%);
  overflow: hidden;
}
#particleCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 40px 24px;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  color: var(--saffron); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  animation: fadeUp 0.9s 0.2s ease both;
  margin-bottom: 8px;
}
.typewriter {
  color: var(--saffron);
  border-right: 3px solid var(--saffron);
  padding-right: 4px;
  display: inline-block;
  min-width: 2px;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
  animation: fadeUp 0.9s 0.4s ease both;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s ease both;
}
.btn-primary {
  display: inline-block;
  padding: 14px 32px; border-radius: 50px;
  background: var(--saffron); color: var(--dark);
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 24px rgba(255,107,26,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,26,0.5);
  background: var(--saffron-light);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 32px; border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--saffron); color: var(--saffron);
  transform: translateY(-2px);
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: fadeUp 1s 1s ease both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--saffron), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden; background: var(--saffron);
  padding: 12px 0;
}
.ticker {
  display: flex; gap: 80px; white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.85rem; font-weight: 600; color: var(--dark);
}
.ticker span { flex-shrink: 0; }

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white); margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== ISSUES ===== */
#issues { background: var(--dark2); }
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.issue-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation-delay: var(--delay);
}
.issue-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,26,0.4);
  box-shadow: 0 16px 48px rgba(255,107,26,0.1);
}
.issue-icon { font-size: 2.5rem; margin-bottom: 16px; }
.issue-card h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  color: var(--white); margin-bottom: 10px;
}
.issue-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.issue-link { color: var(--saffron); font-weight: 600; font-size: 0.9rem; transition: letter-spacing 0.2s; }
.issue-link:hover { letter-spacing: 0.05em; }

/* ===== FEATURED ===== */
#featured { background: var(--dark); }
.featured-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.featured-text .section-label { display: block; margin-bottom: 16px; }
.featured-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white); line-height: 1.3; margin-bottom: 16px;
}
.featured-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.author-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--white);
}
.author-row strong { display: block; font-size: 0.95rem; color: var(--white); }
.author-row span { font-size: 0.8rem; color: var(--text-muted); }
.featured-img-wrap { position: relative; }
.featured-img-bg {
  width: 100%; height: 380px; border-radius: 20px;
  background: linear-gradient(135deg, #1a0a00 0%, #0a1a0a 50%, #000a1a 100%);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.featured-img-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,107,26,0.2), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(10,135,84,0.2), transparent 60%);
}
.featured-img-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(8,8,16,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.fic-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--saffron); margin-bottom: 8px;
}
.fic-quote {
  font-style: italic; font-size: 0.9rem; color: var(--text); line-height: 1.6;
}

/* ===== BLOG ===== */
#blog { background: var(--dark2); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px; margin-bottom: 48px;
}
.blog-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.blog-cat {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.blog-cat.unemployment { background: rgba(255,107,26,0.15); color: var(--saffron); }
.blog-cat.mental-health { background: rgba(139,92,246,0.15); color: #a78bfa; }
.blog-cat.education { background: rgba(0,194,255,0.15); color: var(--blue-accent); }
.blog-cat.inequality { background: rgba(239,68,68,0.15); color: #f87171; }
.blog-cat.digital { background: rgba(16,185,129,0.15); color: #34d399; }
.blog-cat.climate { background: rgba(132,204,22,0.15); color: #a3e635; }
.blog-card h3 {
  font-family: var(--font-head); font-size: 1.2rem;
  color: var(--white); line-height: 1.4; margin-bottom: 10px;
}
.blog-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.blog-meta {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-muted); border-top: 1px solid var(--border);
  padding-top: 16px;
}
.blog-more { text-align: center; }

/* ===== VOICES / STATS ===== */
#voices {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.voices-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.voices-text h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white); margin-bottom: 16px;
}
.voices-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.state-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.state-tags span {
  padding: 6px 14px; border-radius: 50px;
  background: var(--dark3); border: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.state-tags span:hover { border-color: var(--saffron); color: var(--saffron); }
.voices-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-box, .stat-num-box {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; text-align: center;
  transition: border-color 0.3s;
}
.stat-box:hover, .stat-num-box:hover { border-color: rgba(255,107,26,0.3); }
.stat-num {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 900;
  color: var(--saffron); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== WRITE FOR US ===== */
#write {
  background: var(--dark2);
}
.write-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.write-inner h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white); margin-bottom: 16px;
}
.write-inner > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.write-form {
  display: flex; flex-direction: column; gap: 16px; text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.write-form input,
.write-form select,
.write-form textarea {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}
.write-form input:focus,
.write-form select:focus,
.write-form textarea:focus {
  outline: none; border-color: var(--saffron);
}
.write-form input::placeholder,
.write-form textarea::placeholder { color: var(--text-muted); }
.write-form select { appearance: none; cursor: pointer; }
.write-form option { background: var(--dark3); }
.write-form button { align-self: center; padding: 14px 48px; cursor: pointer; border: none; }
.form-success {
  display: none; text-align: center; padding: 48px;
}
.form-success.active { display: block; animation: fadeUp 0.5s ease; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
}
.form-success h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ===== ABOUT ===== */
#about { background: var(--dark); }
.about-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 64px; align-items: center;
}
.about-text h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white); margin-bottom: 20px;
}
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s;
}
.pillar:hover { border-color: rgba(255,107,26,0.3); }
.pillar span { font-size: 2rem; }
.pillar strong { color: var(--white); font-size: 0.95rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; line-height: 1.7; }
.footer-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.footer-links div {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links strong { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .featured-inner, .voices-inner, .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 72px;
    background: var(--dark2); padding: 40px 24px; gap: 24px;
    align-items: flex-start;
  }
  .voices-stat-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .issues-grid, .blog-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
