body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0A0A0A;
  color: #FAF2ED;
  position: relative;
}
.background-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}
.body-bg, .hero, .canon-card, .header, .footer {
  position: relative;
  z-index: 10;
}
.wordmark {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #2A2A2A;
  backdrop-filter: blur(4px);
}
.cta-buttons {
  display: flex;
  gap: 1rem;
}
.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  max-width: 960px;
  margin: 0 auto;
}
.hero-title {
  font-size: 2.75rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  color: #AAAAAA;
  font-size: 1.1rem;
  line-height: 1.7;
}
.canon-button {
  background-color: #1E90FF;
  color: #FAF2ED;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  box-shadow: inset 0 0 1px #ffffff11;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.canon-button:hover {
  background-color: #2B9EFF;
  box-shadow: 0 0 0 3px #1E90FF60;
  color: #ffffff;
}
.canon-card {
  background-color: rgba(26, 26, 26, 0.9);
  border: 1px solid #2A2A2A;
  border-radius: 1rem;
  padding: 2.5rem;
  margin: 3rem auto;
  max-width: 880px;
  box-shadow: 0 0 12px #00000066;
  backdrop-filter: blur(4px);
}
.canon-card.narrow {
  max-width: 480px;
}
.section-heading {
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
.card-text {
  text-align: center;
  color: #CCCCCC;
  margin-bottom: 1.5rem;
}
.card-list {
  list-style: none;
  padding-left: 0;
  color: #CCCCCC;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
}
.card-list li::before {
  content: "• ";
  color: #D9A441;
}
blockquote {
  color: #AAAAAA;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem;
}
.features img,
.screenshot {
  max-width: 90%;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  margin: 1rem auto;
  display: block;
  box-shadow: 0 0 4px #00000066;
}

.screenshot {
  display: block;
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 2rem auto 0;
}
.footer {
  text-align: center;
  font-size: 0.75rem;
  padding: 2rem 0;
  background-color: #0A0A0A;
  color: #AAAAAA;
}