/* cards */
.card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.center {
  text-align: center;
}

/* logos */
.logo {
  display: block;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

.beacon {
  width: 300px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 2px solid var(--border);
}

.reach {
  width: 200px;
  border-radius: 8px;
  transition: box-shadow 0.2s, border-color 0.2s ease;
}

.reach:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(243,191,20,0.6);
}

/* eyebrow */
.eyebrow {
  margin-bottom: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* slideshow */
.slides {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 16px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: center/cover no-repeat;
  transition: opacity 0.5s;
}

.slide.active {
  opacity: 1;
}

.caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: white;
  font-weight: 600;
}

/* dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
}

.dot.active {
  background: var(--yellow);
}

/* signup */
.signup {
  display: block;
  width: fit-content;
  margin: 12px auto 12px;

  text-decoration: none;

  padding: 8px 16px;
  background: var(--blue);
  color: white;

  border-radius: 999px;
  transition: box-shadow 0.2s, border-color 0.2s ease;
}

.signup:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(243,191,20,0.6);
}

/* email */
.card a[href^="mailto:"] {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

.card a[href^="mailto:"]:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
