:root {
  --bg: #050505;
  --surface: #14080a;
  --surface-alt: #100507;
  --text: #fff5f5;
  --muted: #f4cfcf;
  --primary: #e3172d;
  --primary-hover: #ff3047;
  --secondary: #69bb45;
  --accent: #ffd66d;
  --border: #522328;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #2a070c, var(--bg) 55%);
  line-height: 1.6;
}

.container {
  width: min(var(--max-width), 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(255, 214, 109, 0.15);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.logo-mark {
  display: inline-block;
  border: 1px solid rgba(255, 214, 109, 0.25);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  object-fit: contain;
}

.brand-logo {
  width: 2.4rem;
  height: 2.4rem;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1.25fr 0.75fr;
}

.hero-logo {
  width: min(100%, 360px);
  aspect-ratio: 1;
  justify-self: end;
  filter: drop-shadow(0 24px 45px rgba(227, 23, 45, 0.35));
}

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

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.button {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.72rem 1rem;
  border-radius: 0.65rem;
  transition: background-color 0.2s ease;
}

.button:hover {
  background: var(--primary-hover);
}

.button-small {
  padding: 0.52rem 0.82rem;
  font-size: 0.92rem;
}

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

.button-secondary:hover {
  background: rgba(105, 187, 69, 0.18);
}

.section {
  padding: 4rem 0;
}

.section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

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

.card {
  background: linear-gradient(180deg, rgba(227, 23, 45, 0.07), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 214, 109, 0.22);
  padding: 1.2rem;
  border-radius: 0.9rem;
}

.card p,
.section p {
  color: var(--muted);
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(110, 9, 20, 0.3));
  border-block: 1px solid rgba(255, 214, 109, 0.15);
}

.site-footer {
  border-top: 1px solid rgba(255, 214, 109, 0.2);
  padding: 1.8rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.94rem;
}

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

  .hero-logo {
    justify-self: start;
    width: min(70%, 280px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }

  .nav {
    min-height: 4rem;
  }
}
