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

:root {
  --accent: #E8450A;
  --text: #1a1a1a;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --white: #FFFFFF;
  --radius: 12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────────────── */
nav {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { height: 44px; width: auto; display: block; }
.nav-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--text);
  color: white;
  padding: 64px 24px 56px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: white;
}
.hero-sub {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Content ─────────────────────────────────────────── */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Press list ──────────────────────────────────────── */
.press-list {
  padding: 56px 0 80px;
}
.press-list-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.press-item {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity .15s;
}
.press-item:hover { opacity: .7; }
.press-item:hover .press-item-title { color: var(--accent); }
.press-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.press-item-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.press-item-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 99px;
  background: var(--accent);
  color: white;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.press-item-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color .15s;
}
.press-item-excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.empty-state {
  padding: 60px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

/* ── Press release page ───────────────────────────────── */
.release-header {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.release-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.release-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.release-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.release-meta span { display: flex; align-items: center; gap: 5px; }

.release-body {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  padding-bottom: 60px;
}
.release-body p { margin-bottom: 20px; }
.release-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--text);
  letter-spacing: -.01em;
}
.release-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 14px 20px;
  margin: 28px 0;
  background: var(--surface);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 40px 0 60px;
}
.contact-box-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact-box a { color: var(--accent); text-decoration: none; }
.contact-box a:hover { text-decoration: underline; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 14px 0 0;
  transition: color .15s;
}
.back-link:hover { color: var(--text); }

/* ── Footer ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
}
footer img { height: 22px; width: auto; display: inline-block; vertical-align: middle; margin-right: 10px; }

@media (max-width: 600px) {
  .hero { padding: 44px 20px 36px; }
  .press-item-title { font-size: 17px; }
}
