* {
  box-sizing: border-box;
}

:root {
  --bg: #050608;
  --fg: #f9fafb;
  --fg-muted: #9ca3af;
  --accent: #f97373;
  --accent-soft: rgba(248, 113, 113, 0.18);
  --border-subtle: rgba(248, 113, 113, 0.35);
  --shadow-soft: 0 32px 80px rgba(0, 0, 0, 0.95);
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background:
    radial-gradient(circle at top left, #020617 0, transparent 55%),
    radial-gradient(circle at top right, #111827 0, transparent 55%),
    linear-gradient(180deg, #020617, #050608 55%, #020617 100%);
  color: var(--fg);
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(127, 29, 29, 0.96));
  border-bottom: 1px solid rgba(248, 113, 113, 0.4);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--fg);
}

.brand-text h1 {
  margin: 0;
  font-size: 1.4rem;
}

.tagline {
  margin: 0.15rem 0 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.menu-button {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.6);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.menu-button span {
  width: 55%;
  height: 1.5px;
  border-radius: 999px;
  background: var(--fg);
}

.layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.6rem 1.8rem 3.2rem;
}

.hero {
  max-width: 720px;
  margin: 0 auto 2.4rem;
}

.hero h2 {
  margin: 0 0 0.8rem;
  font-size: 1.9rem;
}

.hero p {
  margin: 0 0 1.8rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

.hero-form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #02040a;
  margin-bottom: 1.9rem;
}

.hero-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--fg-muted);
  font-size: 0.92rem;
}

.hero-form input:focus {
  outline: none;
}

.hero-form button {
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  background: #7f1d1d;
  color: var(--fg-muted);
}

.hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.6rem;
}

.hero-meta h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.hero-meta ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.hero-pill-block {
  padding: 0.9rem 1rem 1rem;
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  background: #02040a;
  box-shadow: var(--shadow-soft);
}

.pill-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
}

.pill-list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.stories {
  max-width: 720px;
  margin: 0 auto 2.4rem;
}

.story + .story {
  margin-top: 1.3rem;
}

.story h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.story p {
  margin: 0;
  line-height: 1.8;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.about-card {
  max-width: 720px;
  margin: 2.4rem auto 0;
  border-top: 1px solid rgba(127, 29, 29, 0.9);
  padding-top: 1.4rem;
}

.about-card h4 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
}

.about-card p {
  margin: 0 0 0.8rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1.6rem 1rem 2.4rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

@media (max-width: 700px) {
  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }
}
