:root {
  --bg: #090d16;
  --bg-soft: #10182a;
  --surface: #111c31;
  --surface-2: #0f1a2d;
  --text: #eef3ff;
  --muted: #9fb0d1;
  --line: #2a3654;
  --accent: #4da2ff;
  --accent-2: #8f7cff;
  --success: #57d6a2;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 15% -10%, #1a2a4d 0, var(--bg) 45%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(8, 12, 22, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.brand-text {
  color: var(--text);
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0.2px;
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(77, 162, 255, 0.25);
  text-decoration: none;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.button-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  padding: 4.25rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0;
  color: var(--success);
  letter-spacing: 1.2px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.1;
  max-width: 15ch;
}

.hero-description {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-metrics {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.hero-metrics article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
}

.hero-metrics h3 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-metrics p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-panel {
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
}

.panel-label {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.45rem;
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
}

.hero-panel p,
.hero-panel li {
  color: #d0dbf7;
  font-size: 0.92rem;
}

.panel-link {
  color: #91beff;
  text-decoration: none;
  font-weight: 600;
}

.panel-divider {
  height: 1px;
  background: var(--line);
  margin: 1.2rem 0;
}

.hero-panel ul {
  margin: 0.45rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.sections {
  padding: 3rem 0;
}

.section-heading h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.4rem, 3.2vw, 2.25rem);
}

.card-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.story-card {
  border-radius: 16px;
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-card span {
  color: #9fbeff;
  font-weight: 700;
  font-size: 0.82rem;
}

.story-card h3 {
  margin: 0.55rem 0 0.45rem;
  font-size: 1.03rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter {
  padding: 1rem 0 4rem;
}

.newsletter-wrap {
  border-radius: 20px;
  background: linear-gradient(140deg, #14315f, #202f69 55%, #2f2a66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.35rem 1.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.1rem;
}

.newsletter-wrap h2 {
  margin: 0.5rem 0;
}

.newsletter-wrap p {
  margin: 0;
  color: #d9e4ff;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
}

.newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  min-width: 230px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.6rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .button {
    text-align: center;
  }
}
