/* =========================================================================
   Component: Hero (homepage top section)
   Covers: headline block, CTA row, "About" panel, latest-version badge,
   the two feature-highlight cards, and the animated background wrapper.
   ========================================================================= */

/* Background gradient-blob wrapper — put 3 absolutely-positioned blurred
   divs inside .evox-hero-bg (see hero.html), animated via CSS keyframes
   below instead of framer-motion. */
.evox-hero-bg {
  position: relative;
  isolation: isolate;
}

@media (prefers-reduced-motion: reduce) {
  .evox-hero-bg__blob { animation: none; }
}

/* Headline block */
.evox-hero {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  font-weight: 700;
}
.evox-hero__title {
  font-size: 2.25rem;
  line-height: 1.2;
}
@media (min-width: 576px) { .evox-hero__title { font-size: 3rem; } }
@media (min-width: 992px) { .evox-hero__title { font-size: 3.75rem; } }

.evox-hero__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
}
@media (min-width: 576px) { .evox-hero__subtitle { font-size: 1.25rem; } }
@media (min-width: 992px) { .evox-hero__subtitle { font-size: 1.5rem; } }
.evox-hero__subtitle img {
  height: 1.75rem;
  display: inline-block;
  vertical-align: middle;
}

.evox-hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
}
@media (min-width: 576px) {
  .evox-hero__ctas {
    flex-direction: row;
    gap: 0.75rem;
  }
}
@media (min-width: 992px) {
  .evox-hero__ctas {
    gap: 1.5rem;
  }
}

/* "About Evolution X" panel + the two highlight cards below it all share
   this bordered glass-card look */
.evox-card {
  border: 2px solid var(--evox-primary);
  border-radius: var(--evox-radius-lg);
  background-color: var(--evox-surface);
  box-shadow: var(--evox-shadow-middle);
}

.evox-about-card {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2.5rem;
}
@media (min-width: 576px) {
  .evox-about-card {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .evox-about-card {
    gap: 5rem;
    padding: 4rem;
    min-height: 28rem;
  }
}

.evox-about-card__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 576px) { .evox-about-card__copy { width: 75%; } }
@media (min-width: 992px) { .evox-about-card__copy { gap: 2.5rem; } }

.evox-about-card__title {
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 992px) { .evox-about-card__title { font-size: 3rem; } }

.evox-about-card__body {
  font-size: 1.25rem;
}
@media (min-width: 992px) { .evox-about-card__body { font-size: 1.5rem; } }
.evox-about-card__body a {
  color: var(--evox-teal);
}
.evox-about-card__body a:hover { text-decoration: underline; }

.evox-about-card__version-label {
  color: var(--evox-text-soft);
}
@media (min-width: 992px) { .evox-about-card__version-label { font-size: 1.5rem; } }

.evox-about-card__side {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 992px) { .evox-about-card__side { gap: 3rem; } }

.evox-about-card__badge-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) { .evox-about-card__badge-wrap { width: 15rem; } }
.evox-about-card__badge {
  width: 12rem;
  height: 12rem;
}
@media (min-width: 576px) { .evox-about-card__badge { width: 10rem; height: 10rem; } }
@media (min-width: 992px) { .evox-about-card__badge { width: 12rem; height: 12rem; } }

/* Two highlight cards row (Frequent updates / Pixel look & feel) */
.evox-highlight-row {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media (min-width: 576px) {
  .evox-highlight-row {
    flex-direction: row;
    gap: 3rem;
  }
}
.evox-highlight-card {
  flex: 1 1 0;
  padding: 2.5rem 2rem;
}
@media (min-width: 992px) {
  .evox-highlight-card {
    padding: 3.5rem 3rem;
  }
}
.evox-highlight-card__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: capitalize;
}
.evox-highlight-card__body {
  font-size: 1.25rem;
}
@media (min-width: 992px) { .evox-highlight-card__body { font-size: 1.5rem; } }

/* Screenshot carousel section wrapper */
.evox-screenshots {
  padding: 3rem 0;
  text-align: center;
}
