/* ==========================================================================
   ROOT VARIABLES (only the custom properties actually referenced below)
   ========================================================================== */
:root {
  --default-dark: #060706;
  --body-dark: #6e6659;
  --default-light: white;
  --default-off-white: #f4f3ee;
  --heading-light: white;
  --default-orange: #c1602f;
  --body-light: #f7f3ee;
  --subtitle-on-light: #41db54;
}

/* ==========================================================================
   BASE / RESET (minimal — only what's needed to support the elements used)
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

/* ==========================================================================
   LAYOUT / STRUCTURE
   ========================================================================== */
body {
  background-color: var(--default-dark);
  color: var(--body-dark);
  flex-flow: column;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  margin: 0;
}

.wec-body {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.wec-hero-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--default-off-white);
  flex-flow: column;
  height: auto;
  padding: 16px;
  display: flex;
}

.wec-hero-content-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--default-dark);
  border-radius: 8px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center stretch;
  width: 100%;
  min-height: 100vh;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wec-hero-content {
  z-index: 1;
  grid-row-gap: 32px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  display: flex;
  position: relative;
}

.hero-top-content {
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.navigation {
  z-index: 100;
  background-color: #02020200;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 32px 32px 16px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 70px 1fr 300px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

/* ==========================================================================
   BRANDING / NAV
   ========================================================================== */
.brand-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  transition: all .7s;
  display: flex;
}

.brand-wrap:hover {
  opacity: .7;
}

.logo-image {
  max-width: 50px;
  max-height: 37.125px;
}

.coming-soon-pill {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--body-light);
  text-align: center;
  background-color: #ffffff0d;
  border: 1px #ffffff0d;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.indicator {
  background-color: #41db5440;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
}

.small-indicator {
  background-color: var(--subtitle-on-light);
  border-radius: 100px;
  width: 7px;
  height: 7px;
}

/* ==========================================================================
   SOCIAL PROOF / RATING
   ========================================================================== */
.social-proof-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.subtitle {
  color: var(--body-dark);
  text-align: left;
  letter-spacing: -.5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.subtitle.is-aligned-center {
  text-align: center;
}

.subtitle.is-light {
  color: var(--body-light);
}

.rating-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.rating-text {
  color: var(--body-light);
  letter-spacing: -.5px;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.rating-stars {
  align-items: center;
  display: flex;
}

.star-icon {
  flex: none;
  width: 16px;
  height: 16px;
  /* Added: start hidden/offset so the drop-in animation has something to animate from */
  opacity: 0;
  transform: translateY(-6px);
}

/* Added: subtle staggered drop-in once the page has fully loaded */
.rating-stars.is-loaded .star-icon {
  animation: star-drop-in .5s ease-out forwards;
}

.rating-stars.is-loaded .star-icon:nth-child(1) {
  animation-delay: 0s;
}

.rating-stars.is-loaded .star-icon:nth-child(2) {
  animation-delay: .08s;
}

.rating-stars.is-loaded .star-icon:nth-child(3) {
  animation-delay: .16s;
}

.rating-stars.is-loaded .star-icon:nth-child(4) {
  animation-delay: .24s;
}

.rating-stars.is-loaded .star-icon:nth-child(5) {
  animation-delay: .32s;
}

@keyframes star-drop-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-logo-wrap {
  width: 130px;
  height: 32px;
  display: flex;
  position: relative;
}

.client-image {
  border: 1px solid var(--default-light);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
  overflow: hidden;
}

.client-image.absolute-1 {
  position: absolute;
  left: 24px;
}

.client-image.absolute-2 {
  position: absolute;
  left: 48px;
}

.client-image.absolute-3 {
  position: absolute;
  left: 72px;
}

.client-image-number {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 32px;
  height: 32px;
  color: var(--heading-light);
  text-align: center;
  background-color: #ffffff0d;
  border: 1px solid #ffffff0d;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
  position: absolute;
  left: 94px;
  overflow: hidden;
  font-family: Outfit, sans-serif;
}

.client-image-number div {
  color: var(--default-light);
  font-size: 12px;
  font-weight: 500;
}

.image-100 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   HERO HEADING
   ========================================================================== */
.hero-heading-content {
  grid-column-gap: 16px;
  /* Changed: was 16px — the flex gap plus Anton's font metrics made the visual
     gap read larger than intended, so the gap itself is zeroed out and the
     spacing below is controlled explicitly via h1 margin + paragraph margin-top */
  grid-row-gap: 0px;
  row-gap: 0px;
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 700px;
  display: flex;
}

h1 {
  /* Changed: added negative bottom margin to compensate for Anton's built-in
     line-height whitespace so the visual gap to the paragraph lands ~16-20px */
  margin: 0 0 -8px;
  color: var(--heading-light);
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1px;
  font-size: 64px;
}

.hero-paragraph {
  max-width: 700px;
  color: var(--body-light);
  /* Changed: fixed 18px swapped for a clamp so the paragraph scales smoothly
     down to smaller viewports instead of jumping at breakpoints */
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 120%;
  /* Added: explicit top margin to set the true visual gap under the h1 */
  margin-top: 18px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.button-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.orange-button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--default-orange);
  height: 40px;
  color: var(--body-light);
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .7s;
  display: flex;
}

.orange-button:hover {
  transform: translate(0, -5px);
}

.orange-text-button {
  height: 40px;
  color: var(--default-light);
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .7s;
  display: flex;
}

.orange-text-button:hover {
  opacity: .7;
}

.bttn-arrow {
  width: 20px;
}

.bttn-arrow-wrap {
  background-color: var(--default-dark);
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bttn-arrow-wrap-trnspt {
  border-radius: 4px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   METRICS
   ========================================================================== */
.metrics-wrap {
  z-index: 1;
  grid-column-gap: 48px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.metric-item {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  display: flex;
  /* Added: soft fade/rise entrance, triggered by .is-visible in JS when the
     item scrolls into view, so the whole block appears gently rather than
     just the number ticking up in place */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}

.metric-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-number {
  color: var(--heading-light);
  text-transform: uppercase;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -1px;
  font-size: 36px;
}

.metric-label {
  color: var(--body-light);
  text-align: center;
  letter-spacing: -.25px;
  margin-top: 8px;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}

/* ==========================================================================
   BACKGROUND / FOOTER
   ========================================================================== */
.bg-image {
  opacity: .18;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.footer-credits {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-copyright {
  text-align: center;
  letter-spacing: -.5px;
  white-space: nowrap;
  word-break: keep-all;
  font-size: 14px;
  line-height: 120%;
}

/* ==========================================================================
   RESPONSIVE — 1440px and up
   ========================================================================== */
@media screen and (min-width: 1440px) {
  .hero-heading-content {
    max-width: 800px;
  }

  h1 {
    font-size: 80px;
  }

  .metric-number {
    font-size: 40px;
  }
}

/* ==========================================================================
   RESPONSIVE — max-width 991px (tablet)
   ========================================================================== */
@media screen and (max-width: 991px) {
  .navigation {
    padding: 16px 24px;
  }

  .wec-hero-content-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-heading-content {
    max-width: 600px;
  }

  h1 {
    font-size: 56px;
  }

  .wec-hero-content-wrapper {
    min-height: auto;
  }

  .metrics-wrap {
    grid-column-gap: 32px;
  }
}

/* ==========================================================================
   RESPONSIVE — max-width 767px (mobile landscape)
   ========================================================================== */
@media screen and (max-width: 767px) {
  .navigation {
    padding-left: 16px;
    padding-right: 16px;
    position: absolute;
    inset: 0% 0% auto;
  }

  .nav-wrapper {
    z-index: 100;
    position: relative;
  }

  .brand-wrap {
    z-index: 100;
  }

  .wec-hero-content-wrapper {
    padding-top: 100px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wec-hero-content {
    justify-content: flex-start;
  }

  h1 {
    font-size: 40px;
    letter-spacing: -0.5px;
  }

  .metrics-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 32px;
  }
}

/* ==========================================================================
   RESPONSIVE — max-width 479px (mobile portrait)
   ========================================================================== */
@media screen and (max-width: 479px) {
  .button-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  h1 {
    font-size: 32px;
  }

  .metric-number {
    font-size: 30px;
  }
}

/* ==========================================================================
   ACCESSIBILITY — reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .star-icon {
    opacity: 1;
    transform: none;
  }

  .rating-stars.is-loaded .star-icon {
    animation: none;
  }

  .metric-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}