:root {
  --bg: #0b0b12;
  --card: #161622;
  --text: #f5f7ff;
  --muted: #b7bdd1;
  --accent: #d7263d;
  --accent-2: #ffffff;
  --border: #2a2d3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(215, 38, 61, 0.18), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.hero {
  min-height: 75vh;
  display: flex;
  align-items: flex-end;   /* <-- move card to bottom */
  justify-content: center; /* <-- center horizontally */
  padding: 2rem;

  background:
    linear-gradient(rgba(11,11,18,0.5), rgba(11,11,18,0.9)),
    url("/images/redshift.jpg") center center / cover no-repeat;

  border-radius: 20px;
  overflow: hidden;
}
.card {
  max-width: 420px;
  width: 100%;
  background: rgba(22, 22, 34, 0.88);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.details div {
  background: rgba(16, 16, 26, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
}

.details strong {
  display: block;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.details span {
  color: var(--text);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--border);
}

.content {
  margin-top: 2rem;
  color: var(--muted);
}

.content h2,
.content h3 {
  color: var(--text);
}

@media (max-width: 700px) {
  .page {
    padding: 1rem 0.75rem 3rem;
  }

  .hero {
    min-height: auto;
    justify-content: center;
    align-items: flex-end;
    padding: 1rem;
    background-position: center;
  }

  .card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .buttons {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }
}