.site-main.boltreporter-main {
  margin: 0;
  padding: 0;
}

.boltreporter-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: rgba(8, 8, 8, 0.92);
  color: var(--text-primary);
}

.hero {
  background-color: transparent;
  padding: 2.5rem 1.5rem 4rem;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero__content {
  flex: 1 1 0;
}

.hero__eyebrow {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  font-family: "Permanent Marker";
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 100%;
  -webkit-user-select: none;
  user-select: none;
}

.hero__headline img {
  flex: 0 0 auto;
  height: clamp(1.75rem, 4vw, 42px);
  width: auto;
  position: relative;
  right: 5px;
}

.hero__wordmark {
  min-width: 0;
  white-space: nowrap;
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 34rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero__downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1200;
  background: var(--accent);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 0 0 0 rgba(254, 185, 0, 0.35);
}

.download-button i {
  font-size: 1.3rem;
}

.download-button:hover,
.download-button:focus-visible {
  background-color: var(--accent-hover);
  box-shadow: 0 0 0 4px rgba(254, 185, 0, 0.35);
  color: #140c00;
}

.download-button:focus-visible {
  outline: none;
}

.hero__version-note {
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.85);
}

.hero__visual {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__screenshot {
  width: min(100%, 520px);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.55);
  padding: 1.5rem;
  box-shadow: 0 32px 70px rgba(4, 5, 10, 0.6);
}

.hero__screenshot img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 45px rgba(5, 6, 12, 0.45);
}

.secondary {
  background: var(--bg-darker);
  padding: 2rem 1.5rem 4.5rem 1.5rem;
  color: var(--text-primary);
}

.secondary__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.secondary__heading {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.secondary__note {
  background: var(--bg-darkerer);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
  box-shadow: 0 12px 30px rgba(4, 6, 12, 0.4);
}

.secondary__note p {
  margin-bottom: 0.75rem;
}

.secondary__note p:last-child {
  margin-bottom: 0;
}

.secondary__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.alt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  background: var(--bg-dark);
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(4, 6, 12, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.alt-card i {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.alt-card__label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.alt-card__description {
  font-size: 0.98rem;
  color: rgba(203, 213, 225, 0.75);
  max-width: 18rem;
}

.alt-card--ios i,
.alt-card--ios .alt-card__label {
  color: rgba(226, 232, 240, 0.95);
}

.alt-card--docs i,
.alt-card--docs .alt-card__label {
  color: var(--accent);
}

.alt-card:hover,
.alt-card:focus-visible {
  box-shadow: 0 22px 50px rgba(4, 6, 12, 0.6);
}

.alt-card:hover i,
.alt-card:focus-visible i {
  filter: brightness(1.05);
}

.alt-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1023px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 36rem;
  }

  .hero__tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    align-items: center;
  }

  .hero__downloads {
    justify-content: center;
  }

  .hero__visual {
    width: 100%;
  }

  .secondary__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .hero__inner {
    align-items: flex-start;
    text-align: left;
  }

  .hero__content {
    width: 100%;
  }

  .hero__headline {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
    gap: 0.15rem;
    max-width: 100%;
  }

  .hero__headline img {
    height: clamp(1.5rem, 8vw, 34px);
    right: 0;
  }

  .hero__cta {
    width: 100%;
    align-items: flex-start;
  }

  .hero__downloads {
    justify-content: flex-start;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__screenshot {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .hero__screenshot img {
    border-radius: 14px;
  }

  .secondary {
    padding: 3rem 1.25rem 3.5rem;
  }

  .secondary__cards {
    grid-template-columns: 1fr;
  }

  .alt-card {
    padding: 2.25rem 1.75rem;
  }
}

@media (max-width: 360px) {
  .hero__headline {
    font-size: clamp(1.6rem, 8.5vw, 2.25rem);
    gap: 0.1rem;
  }

  .hero__headline img {
    height: 1.4rem;
  }
}
