@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --blood-900: #3a0b0b;
  --blood-800: #561010;
  --blood-700: #701616;
  --blood-600: #8a1f1f;
  --blood-500: #a62b2b;
  --ink-950: #0d0b0b;
  --ink-900: #141010;
  --ink-800: #1f1a1a;
  --ink-700: #2c2424;
  --sand-200: #f2ebe8;
  --sand-100: #faf7f4;
  --fog: rgba(250, 247, 244, 0.12);
  --shadow: rgba(10, 6, 6, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--sand-100);
  background: radial-gradient(circle at top, #241414 0%, #140b0b 40%, #0c0707 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background: radial-gradient(circle at 20% 20%, rgba(138, 31, 31, 0.3), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(166, 43, 43, 0.2), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(112, 22, 22, 0.3), transparent 50%);
  opacity: 0.8;
}

body::after {
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  mix-blend-mode: screen;
}

img {
  max-width: 100%;
  display: block;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(10, 6, 6, 0.7);
  border-bottom: 1px solid rgba(166, 43, 43, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  font-family: "Gilda Display", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  color: var(--blood-500);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--blood-500);
}

.hero {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-family: "Gilda Display", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 20px;
}

.hero p {
  color: var(--sand-200);
  line-height: 1.6;
  margin: 0 0 24px;
}

.hero-card {
  background: linear-gradient(145deg, rgba(47, 19, 19, 0.9), rgba(16, 8, 8, 0.8));
  border: 1px solid rgba(166, 43, 43, 0.3);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px var(--shadow);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 235, 232, 0.1);
  font-size: 0.95rem;
}

.hero-card li:last-child {
  border-bottom: none;
}

.tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blood-500);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blood-600);
  color: var(--sand-100);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(166, 43, 43, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(166, 43, 43, 0.6);
  color: var(--sand-100);
}

.section {
  padding: 60px 0;
}

.section-title {
  font-family: "Gilda Display", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--sand-200);
  margin: 0 0 30px;
}

.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: rgba(20, 12, 12, 0.9);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(166, 43, 43, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: var(--sand-200);
  line-height: 1.5;
}

.stat {
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--blood-500);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 43, 43, 0.6), transparent);
  margin: 50px 0;
}

.footer {
  border-top: 1px solid rgba(166, 43, 43, 0.3);
  padding: 32px 0 50px;
  color: var(--sand-200);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}

.fade-up {
  animation: fadeUp 0.9s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 22px;
  }
}
