/* Early Signals — site styles
   Brand: navy #0A1628 + gold #D4A574 + soft blue #7BA3D9
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #142847;
  --navy-light: #1B3658;
  --gold: #D4A574;
  --gold-dim: #8A6230;
  --blue: #7BA3D9;
  --blue-dim: #3D6FAF;
  --blue-bg: #E0EBF8;
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --page-bg: #EEF1F5;
  --border: rgba(255,255,255,0.10);
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--navy);
  color: var(--white);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,22,40,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.nav-brand img { height: 30px; width: auto; }
.nav-brand .accent { color: var(--blue); }
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.nav-links .cta:hover { background: #E8C190; color: var(--navy); }

/* ── COVER BANNER (narrow, above hero) ── */
.cover-banner {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.cover-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.cover-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.55) 70%, var(--navy) 100%);
  pointer-events: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 32px 90px;
  text-align: center;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(123,163,217,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(212,165,116,0.08) 0%, transparent 60%),
    var(--navy);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(212,165,116,0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(212,165,116,0.30);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .blue { color: var(--blue); }
.hero p.tagline {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* signup form */
.signup {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}
.signup input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 16px;
  padding: 12px 18px;
  font-family: inherit;
}
.signup input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.signup button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s;
}
.signup button:hover { background: #E8C190; }
.signup-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ── SECTION ── */
.section {
  padding: 80px 32px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}
.section h2 .accent { color: var(--gold); }
.section p.lede {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 700px;
  margin-bottom: 32px;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.stats-bar .stat {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--border);
}
.stats-bar .stat:last-child { border-right: none; }
.stats-bar .stat-num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1.5px;
  line-height: 1;
}
.stats-bar .stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  font-weight: 600;
}

/* ── RECENT STORIES (preview quotes) ── */
.stories-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.story-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  position: relative;
  transition: border-color 0.15s, transform 0.15s;
}
.story-quote:hover {
  border-color: rgba(212,165,116,0.4);
  transform: translateY(-2px);
}
.story-quote-tag {
  display: inline-block;
  background: rgba(212,165,116,0.13);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(212,165,116,0.30);
  margin-bottom: 18px;
}
.story-quote-headline {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--white);
  margin-bottom: 16px;
}
.story-quote-source {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.story-quote-source .issue {
  color: var(--blue);
  font-weight: 700;
}

/* ── ABOUT (3-up grid) ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 26px 28px;
}
.about-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212,165,116,0.14);
  border: 1px solid rgba(212,165,116,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.about-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.about-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* ── ISSUES GRID ── */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.issue-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.issue-card:hover {
  border-color: rgba(212,165,116,0.4);
  transform: translateY(-2px);
}
.issue-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}
.issue-card-issue {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}
.issue-card-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--white);
}
.issue-card-summary {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.issue-card-stats {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
  font-size: 12px;
}
.issue-card-stats span { color: rgba(255,255,255,0.55); }
.issue-card-stats strong { color: var(--blue); font-weight: 700; }

/* ── ARCHIVE LIST ── */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
.archive-item {
  display: grid;
  grid-template-columns: 110px 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
}
.archive-item:hover {
  border-color: rgba(212,165,116,0.4);
  background: rgba(255,255,255,0.05);
}
.archive-date {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.archive-issue-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.archive-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}
.archive-title .summary {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}
.archive-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px 30px;
  background: #050E1A;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand img { height: 36px; margin-bottom: 12px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── PAGE TITLE BAR (archive page) ── */
.page-title {
  padding: 80px 32px 40px;
  border-bottom: 1px solid var(--border);
}
.page-title-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-title-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-title h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
}
.page-title p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
  max-width: 600px;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .nav-inner { padding: 0 18px; }
  .nav-links { gap: 16px; font-size: 13px; }
  .nav-links a:not(.cta) { display: none; }
  .cover-banner { height: 180px; }
  .hero { padding: 50px 18px 60px; }
  .stats-bar { flex-direction: column; }
  .stats-bar .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .stats-bar .stat:last-child { border-bottom: none; }
  .stories-preview { grid-template-columns: 1fr; }
  .section { padding: 56px 18px; }
  .signup { flex-direction: column; padding: 12px; border-radius: 22px; }
  .signup input[type="email"] { padding: 10px 16px; }
  .signup button { width: 100%; padding: 14px; }
  .about-grid, .issues-grid { grid-template-columns: 1fr; }
  .archive-item { grid-template-columns: 1fr; gap: 6px; padding: 18px; }
  .archive-cta { margin-top: 4px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
