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

:root {
  --ink: #0f0e0c;
  --paper: #f5f2eb;
  --accent: #c8392b;
  --accent2: #e8a020;
  --muted: #8a8578;
  --card-bg: #fffdf7;
  --border: #ddd9d0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  overflow: hidden;
  height: 30px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--accent);
}
.ticker-label {
  background: var(--accent);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-scroll {
  display: flex;
  gap: 48px;
  animation: tickerMove 40s linear infinite;
  white-space: nowrap;
  padding-left: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: rgba(245,242,235,0.7);
  letter-spacing: 0.04em;
}
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-scroll span::before { content: "◆  "; color: var(--accent); opacity: 0.7; }

/* ── HEADER ── */
header {
  border-bottom: 2px solid var(--ink);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 100;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}
.logo-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: logoPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes logoPulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.35);opacity:0.7;} }
.logo-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-weight: 400;
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
}
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.tag-pill {
  background: var(--ink);
  color: var(--paper);
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-pill-outline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.15s;
}
.tag-pill-outline:hover { border-color: var(--ink); color: var(--ink); }
.loc-dot { width: 6px; height: 6px; background: var(--accent2); border-radius: 50%; animation: logoPulse 2s ease-in-out infinite; }

/* ── HERO ── */
.hero {
  padding: 3rem 2rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.hero-text { padding-top: 0.5rem; }
.hero-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-kicker::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); }
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-text h1 em { font-style: italic; color: var(--accent); }
.hero-text p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 360px;
  margin-bottom: 1.5rem;
}
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem; }
.hero-bullets li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); font-weight: 300; }
.hero-bullets li::before { content: '→'; color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
.hero-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat-n { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; line-height: 1; color: var(--ink); }
.hstat-l { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── SUBMIT CARD ── */
.submit-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 6px 6px 0 var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.submit-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--accent); }
.submit-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.submit-label-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.mode-tabs { display: flex; gap: 5px; background: rgba(255,255,255,0.06); border-radius: 10px; padding: 4px; }
.mode-tab {
  flex: 1; background: transparent; border: none; border-radius: 7px;
  color: rgba(245,242,235,0.45); font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.04em; padding: 8px 6px;
  cursor: pointer; transition: all 0.18s; white-space: nowrap;
}
.mode-tab:hover { color: var(--paper); }
.mode-tab.active { background: var(--accent); color: white; font-weight: 500; }
.submit-card textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px; color: var(--paper); font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; padding: 0.85rem 1rem; resize: none; height: 110px;
  outline: none; transition: border-color 0.2s; line-height: 1.55; width: 100%;
}
.submit-card textarea::placeholder { color: rgba(245,242,235,0.3); }
.submit-card textarea:focus { border-color: var(--accent2); }

/* Recorder */
.recorder-box { display: flex; flex-direction: column; gap: 0.75rem; }
.recorder-viz {
  background: rgba(0,0,0,0.28); border-radius: 10px; height: 80px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative; overflow: hidden;
}
.viz-bars { display: flex; align-items: center; gap: 3px; height: 40px; }
.viz-bars span { display: block; width: 4px; background: var(--accent2); border-radius: 2px; height: 6px; opacity: 0.5; }
.viz-bars.active span { opacity: 1; animation: barBounce 0.6s ease-in-out infinite alternate; }
.viz-bars span:nth-child(1){animation-delay:0s} .viz-bars span:nth-child(2){animation-delay:0.07s}
.viz-bars span:nth-child(3){animation-delay:0.14s} .viz-bars span:nth-child(4){animation-delay:0.21s}
.viz-bars span:nth-child(5){animation-delay:0.28s} .viz-bars span:nth-child(6){animation-delay:0.21s}
.viz-bars span:nth-child(7){animation-delay:0.14s} .viz-bars span:nth-child(8){animation-delay:0.07s}
@keyframes barBounce { from{height:4px;} to{height:32px;} }
.rec-timer { font-family: 'DM Mono', monospace; font-size: 1.1rem; color: var(--paper); font-weight: 500; letter-spacing: 0.05em; min-width: 48px; text-align: center; }
.rec-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; animation: logoPulse 1s ease-in-out infinite; position: absolute; top: 10px; right: 12px; }
.rec-maxlabel { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: rgba(245,242,235,0.28); letter-spacing: 0.08em; text-transform: uppercase; position: absolute; bottom: 7px; right: 12px; }
.camera-icon { font-size: 1.8rem; opacity: 0.3; }
.rec-hint { font-size: 0.7rem; color: rgba(245,242,235,0.3); font-family: 'DM Mono', monospace; text-align: center; position: absolute; bottom: 10px; }
.recorder-controls { display: flex; gap: 8px; justify-content: center; }
.rec-btn { border: none; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 500; padding: 8px 18px; cursor: pointer; transition: all 0.15s; }
.rec-start { background: rgba(255,255,255,0.12); color: var(--paper); }
.rec-start:hover { background: rgba(255,255,255,0.2); }
.rec-stop { background: var(--accent); color: white; }
.rec-stop:hover { background: #a82e22; }
.playback-area { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.playback-area audio, .video-preview { width: 100%; border-radius: 8px; background: #000; }
.video-preview { max-height: 140px; object-fit: cover; }
.rec-redo { background: none; border: 1px solid rgba(255,255,255,0.18); border-radius: 7px; color: rgba(245,242,235,0.5); font-family: 'Outfit', sans-serif; font-size: 0.7rem; padding: 5px 14px; cursor: pointer; transition: all 0.15s; letter-spacing: 0.04em; }
.rec-redo:hover { border-color: var(--accent2); color: var(--accent2); }

/* Contact fields */
.contact-section-label { font-family: 'Outfit', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent2); display: flex; align-items: center; gap: 8px; }
.required-tag { background: rgba(200,57,43,0.22); color: #ff8070; padding: 1px 7px; border-radius: 100px; font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-fields { display: none; flex-direction: column; gap: 0.6rem; animation: expandIn 0.25s ease; }
@keyframes expandIn { from{opacity:0;transform:translateY(-6px);} to{opacity:1;transform:translateY(0);} }
.contact-fields.open { display: flex; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.contact-input { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 8px; color: var(--paper); font-family: 'Outfit', sans-serif; font-size: 0.88rem; padding: 0.6rem 0.85rem; outline: none; transition: border-color 0.2s; width: 100%; }
.contact-input::placeholder { color: rgba(245,242,235,0.28); }
.contact-input:focus { border-color: var(--accent2); }
.contact-input.error { border-color: var(--accent) !important; animation: shake 0.3s ease; }
@keyframes shake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-5px);} 75%{transform:translateX(5px);} }
.contact-note { font-size: 0.66rem; color: rgba(245,242,235,0.3); font-family: 'Outfit', sans-serif; letter-spacing: 0.01em; line-height: 1.4; }
.input-wrap { position: relative; display: flex; flex-direction: column; gap: 3px; }
.field-error { font-family: 'Outfit', sans-serif; font-size: 0.6rem; color: #ff8070; letter-spacing: 0.04em; display: none; padding-left: 2px; }

/* Upload zone */
.upload-section { display: flex; flex-direction: column; gap: 0.5rem; }
.upload-label { font-family: 'Outfit', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent2); display: flex; align-items: center; gap: 8px; }
.optional-upload-tag { background: rgba(255,255,255,0.08); padding: 1px 7px; border-radius: 100px; font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,242,235,0.35); }
.upload-zone { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1.5px dashed rgba(255,255,255,0.18); border-radius: 10px; padding: 1.1rem 1rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; text-align: center; }
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--accent2); background: rgba(232,160,32,0.06); }
.upload-icon { font-size: 1.2rem; opacity: 0.45; }
.upload-text { font-size: 0.76rem; color: rgba(245,242,235,0.45); font-family: 'Outfit', sans-serif; line-height: 1.5; }
.upload-text span { color: var(--accent2); text-decoration: underline; text-underline-offset: 2px; }
.file-list { display: flex; flex-direction: column; gap: 5px; }
.file-item { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.07); border-radius: 7px; padding: 6px 10px; font-family: 'Outfit', sans-serif; font-size: 0.68rem; color: rgba(245,242,235,0.65); animation: slideIn 0.2s ease; }
.file-item-left { display: flex; align-items: center; gap: 7px; overflow: hidden; }
.file-item-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.file-item-size { color: rgba(245,242,235,0.32); white-space: nowrap; }
.file-remove { background: none; border: none; color: rgba(245,242,235,0.35); cursor: pointer; font-size: 0.85rem; padding: 0 2px; line-height: 1; transition: color 0.15s; flex-shrink: 0; }
.file-remove:hover { color: var(--accent); }

/* Submit row */
.submit-row { display: flex; gap: 0.75rem; align-items: center; }
.category-select { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 8px; color: var(--paper); font-family: 'Outfit', sans-serif; font-size: 0.8rem; padding: 0.6rem 0.75rem; outline: none; cursor: pointer; flex: 1; }
.category-select option { background: #1a1a17; }
.submit-btn { background: var(--accent); color: white; border: none; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; padding: 0.6rem 1.4rem; cursor: pointer; transition: background 0.15s, transform 0.1s; white-space: nowrap; letter-spacing: 0.02em; }
.submit-btn:hover { background: #a82e22; }
.submit-btn:active { transform: scale(0.97); }

/* ── SECTION DIVIDER ── */
.section-divider { max-width: 1000px; margin: 1.5rem auto 1.75rem; padding: 0 2rem; display: flex; align-items: center; gap: 1rem; }
.section-divider span { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.divider-line { flex: 1; height: 1px; background: var(--border); }

/* ── STATS BAR ── */
.stats-bar { max-width: 1000px; margin: 0 auto 0.75rem; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.stats-count { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.05em; }
.live-badge { display: flex; align-items: center; gap: 6px; font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.live-dot { width: 7px; height: 7px; background: #2ecc71; border-radius: 50%; animation: logoPulse 1.5s ease-in-out infinite; }

/* ── FILTERS ── */
.filters { max-width: 1000px; margin: 0 auto 1.25rem; padding: 0 2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn { background: transparent; border: 1px solid var(--border); border-radius: 100px; font-family: 'DM Mono', monospace; font-size: 0.68rem; padding: 5px 14px; cursor: pointer; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; transition: all 0.15s; }
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ── FEED ── */
.feed { max-width: 1000px; margin: 0 auto; padding: 0 2rem 5rem; display: grid; gap: 0.9rem; }
.tip-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.5rem; display: grid; grid-template-columns: 1fr auto; gap: 0.75rem; align-items: start; transition: border-color 0.15s, box-shadow 0.15s; animation: slideIn 0.3s ease both; }
@keyframes slideIn { from{opacity:0;transform:translateY(10px);} to{opacity:1;transform:translateY(0);} }
.tip-card:hover { border-color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.tip-body p { font-size: 0.95rem; line-height: 1.55; margin-bottom: 0.65rem; }
.tip-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.tip-category { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; font-weight: 500; }
.cat-politics  { background: #fde8e6; color: #a82e22; }
.cat-tech      { background: #e6eeff; color: #1a3a9e; }
.cat-local     { background: #e8f5e9; color: #2e7d32; }
.cat-business  { background: #fff8e1; color: #e65100; }
.cat-culture   { background: #f3e5f5; color: #6a1b9a; }
.cat-health    { background: #e0f7fa; color: #006064; }
.cat-environment { background: #e8f5e9; color: #1b5e20; }
.cat-education { background: #fff3e0; color: #bf360c; }
.cat-crime     { background: #fce4ec; color: #880e4f; }
.cat-other     { background: #f5f5f5; color: #424242; }
.tip-fmt { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.06em; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.tip-time { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--muted); }
.tip-location { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: var(--accent2); display: flex; align-items: center; gap: 3px; }
.tip-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.upvote-btn { display: flex; flex-direction: column; align-items: center; background: var(--paper); border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; cursor: pointer; font-size: 0.75rem; font-family: 'DM Mono', monospace; color: var(--muted); transition: all 0.15s; min-width: 44px; line-height: 1; gap: 2px; }
.upvote-btn:hover { border-color: var(--accent); color: var(--accent); }
.upvote-btn.voted { background: var(--accent); color: white; border-color: var(--accent); }
.upvote-btn .arrow { font-size: 0.9rem; }
.empty { text-align: center; padding: 3rem; color: var(--muted); font-style: italic; font-family: 'Playfair Display', serif; font-size: 1.1rem; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--ink); border-top: 2px solid var(--border); padding: 3rem 2rem; }
.how-inner { max-width: 1000px; margin: 0 auto; }
.how-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent2); margin-bottom: 0.6rem; }
.how-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--paper); margin-bottom: 2rem; line-height: 1.1; }
.how-title em { font-style: italic; color: var(--accent); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.step { background: #1a1917; padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; transition: background 0.2s; }
.step:hover { background: #222018; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: rgba(255,255,255,0.06); line-height: 1; letter-spacing: -1px; }
.step-em { font-size: 1.6rem; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--paper); }
.step p { font-size: 0.78rem; color: rgba(245,242,235,0.45); line-height: 1.65; font-family: 'DM Sans', sans-serif; font-weight: 300; }

/* ── JOURNALIST SECTION ── */
.journalist-section { padding: 3rem 2rem; border-top: 1px solid var(--border); max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.j-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.j-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1.1; margin-bottom: 0.75rem; }
.j-title em { font-style: italic; color: var(--accent); }
.j-body { font-size: 0.84rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; max-width: 360px; }
.j-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.j-features li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink); }
.j-check { width: 18px; height: 18px; background: var(--accent); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; flex-shrink: 0; }
.j-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--paper); padding: 0.7rem 1.4rem; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s; box-shadow: 3px 3px 0 var(--accent); }
.j-btn:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--accent); }
.j-card { background: var(--ink); border-radius: 14px; overflow: hidden; box-shadow: 8px 8px 0 var(--accent); }
.j-card-head { background: #1a1917; padding: 12px 18px; display: flex; align-items: center; gap: 7px; }
.wdot { width: 9px; height: 9px; border-radius: 50%; }
.wd-r { background: #c8392b; } .wd-y { background: #e8a020; } .wd-g { background: #2ecc71; }
.j-card-head span { font-family: 'DM Mono', monospace; font-size: 0.58rem; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; margin-left: auto; }
.j-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.j-metric { display: flex; justify-content: space-between; align-items: center; padding: 10px 13px; background: rgba(255,255,255,0.04); border-radius: 8px; border-left: 3px solid var(--accent); }
.j-metric-label { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.j-metric-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--paper); }
.j-metric-val.amber { color: var(--accent2); }
.j-metric-val.green { color: #2ecc71; }

/* ── FOOTER ── */
footer { background: var(--ink); border-top: 3px double var(--border); padding: 2.5rem 2rem 1.5rem; }
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .flogo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--paper); margin-bottom: 4px; display: flex; align-items: center; gap: 7px; }
.footer-brand .flogo .logo-dot { width: 8px; height: 8px; }
.footer-brand .ftagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.65; max-width: 200px; font-weight: 300; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent2); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; font-weight: 300; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }
.footer-bottom .ftagline-small { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--ink); color: var(--paper); padding: 0.75rem 1.25rem; border-radius: 8px; font-size: 0.82rem; font-family: 'DM Mono', monospace; display: flex; align-items: center; gap: 8px; transform: translateY(80px); opacity: 0; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); z-index: 999; box-shadow: 4px 4px 0 var(--accent); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem 1.5rem; }
  .hero-text p, .j-body { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .journalist-section { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem; }
  .j-card { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feed, .filters, .section-divider, .stats-bar { padding-left: 1rem; padding-right: 1rem; }
  header { padding: 0 1rem; }
  .contact-row { grid-template-columns: 1fr; }
  .how-section { padding: 2rem 1rem; }
}
