:root {
  --ink: #f5f5f5;
  --muted: #b5b7bf;
  --accent: #f01a2d;
  --accent-deep: #b80f1f;
  --graphite: #0b0c10;
  --charcoal: #14151b;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --glass: rgba(16, 17, 22, 0.78);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Palatino", serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #1a1b22, var(--graphite) 35%, #0a0b10 70%, #050507 100%);
}

main {
  padding: 32px 6vw 64px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

p {
  margin: 0;
}

.hero {
  padding: 28px 6vw 80px;
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(20, 21, 27, 0.95), rgba(10, 10, 12, 0.88));
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 26, 45, 0.22);
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s ease both;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--accent), var(--accent-deep));
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 10px 22px rgba(240, 26, 45, 0.5);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

button {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.solid {
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 30px rgba(240, 93, 35, 0.35);
}

.ghost {
  background: var(--glass);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--muted);
}

.subhead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.stat {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.hero-shots img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 26, 45, 0.2);
  transform: translateY(10px);
  animation: floatUp 1s ease both;
}

.hero-shots img:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-shots img:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-shots img:nth-child(4) {
  animation-delay: 0.45s;
}

.panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin: 70px 6vw;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(20, 21, 27, 0.9), rgba(9, 9, 12, 0.95));
  border: 1px solid rgba(240, 26, 45, 0.2);
}

.panel-cards {
  display: grid;
  gap: 18px;
}

.panel-cards article {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(8, 8, 10, 0.75);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(240, 26, 45, 0.16);
}

.panel-cards h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 6vw;
  border-radius: 24px;
  background: linear-gradient(120deg, var(--accent), #6e0913);
  color: white;
  margin: 0 6vw 40px;
  box-shadow: 0 22px 48px rgba(240, 26, 45, 0.35);
}

.cta .subhead {
  color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta .ghost {
  background: rgba(0, 0, 0, 0.35);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 6vw 30px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

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

.page {
  min-height: 100vh;
  padding: 32px 6vw 60px;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.page-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(20, 21, 27, 0.95), rgba(10, 10, 12, 0.88));
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 26, 45, 0.18);
}

.page-card h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.page-card h2 {
  font-size: 1.3rem;
  margin: 28px 0 12px;
}

.page-card p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.page-card ul {
  margin: 0 0 16px 18px;
  color: var(--muted);
}

.page-card a {
  color: var(--ink);
}

.back-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

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

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

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

  .hero {
    padding: 24px;
  }

  .panel {
    margin: 50px 0;
    padding: 32px 24px;
  }

  .cta {
    margin: 0 0 30px;
    padding: 32px 24px;
  }
}
