:root {
  --pico-container-max-width: 960px;
}

/* Nav */
nav {
  align-items: flex-end;
}

/* Nav logo */
.nav-logo {
  height: 5rem;
  width: auto;
}

.logo-link {
  display: flex;
  align-items: center;
}

/* Hero section */
.hero {
  text-align: center;
}

/* Video placeholder */
.video-placeholder {
  aspect-ratio: 16 / 9;
  background-color: var(--pico-muted-border-color);
  border-radius: var(--pico-border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto var(--pico-spacing);
  width: 50%;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .video-placeholder {
    width: 100%;
  }
}

.video-placeholder p {
  color: var(--pico-muted-color);
  margin: 0;
}

/* CTA text */
.cta {
  font-size: 1.125rem;
}

/* Feature boxes */
.features {
  margin-top: calc(var(--pico-spacing) * 3);
}

.features article {
  text-align: center;
  padding: var(--pico-spacing);
  padding-top: calc(var(--pico-spacing) * 1.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  background-color: var(--pico-card-hover-background-color, rgba(255, 255, 255, 0.05));
  border-color: var(--pico-primary);
}

.features article i {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.25rem;
  color: var(--pico-primary);
}

.features article i svg {
  width: 4.5rem;
  height: 4.5rem;
}

.features article strong {
  display: block;
  margin-bottom: 0.5rem;
}

.features article p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--pico-muted-color);
}

/* Footer */
footer.container {
  text-align: center;
}
