.home .dyp-site-main {
  min-height: 100svh;
  padding-top: calc(var(--dyp-header-height) + 42px);
}

.dyp-home-hero {
  display: grid;
  min-height: calc(100svh - var(--dyp-header-height) - 42px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 82%, rgba(255, 20, 147, 0.24), transparent 30%),
    radial-gradient(circle at 65% 18%, rgba(139, 53, 255, 0.12), transparent 25%),
    #020617;
}

.dyp-home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: clamp(42px, 7vh, 82px) 0;
}

.dyp-home-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.dyp-home-hero__eyebrow {
  margin: 0 0 18px;
  color: #ff1493;
  font-size: 0.8125rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dyp-home-hero__title {
  max-width: 660px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 4.15vw, 3.75rem);
  font-weight: 900;
  line-height: 0.99;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.dyp-home-hero__title-primary,
.dyp-home-hero__title-highlight {
  display: block;
}

.dyp-home-hero__title-highlight {
  margin-top: 0.08em;
  color: #ff1493;
}

.dyp-home-hero__description {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.dyp-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.dyp-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.dyp-hero-button--primary {
  background: linear-gradient(135deg, #ff1493, #e6007e);
  box-shadow: 0 14px 32px rgba(255, 20, 147, 0.28);
}

.dyp-hero-button--secondary {
  border-color: #f2a900;
  background: rgba(255, 255, 255, 0.03);
}

.dyp-hero-button:hover,
.dyp-hero-button:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
}

.dyp-hero-button--primary:hover,
.dyp-hero-button--primary:focus-visible {
  box-shadow: 0 18px 42px rgba(255, 20, 147, 0.42);
}

.dyp-hero-button--secondary:hover,
.dyp-hero-button--secondary:focus-visible {
  background: rgba(242, 169, 0, 0.12);
  box-shadow: 0 0 24px rgba(242, 169, 0, 0.2);
}

.dyp-hero-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.dyp-home-hero__visual {
  min-width: 0;
}

.dyp-home-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .dyp-home-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    width: min(100% - 36px, 760px);
    text-align: center;
  }

  .dyp-home-hero__title,
  .dyp-home-hero__description {
    margin-right: auto;
    margin-left: auto;
  }

  .dyp-home-hero__actions {
    justify-content: center;
  }

  .dyp-home-hero__visual {
    width: min(100%, 680px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .home .dyp-site-main {
    padding-top: calc(var(--dyp-header-height) + 30px);
  }

  .dyp-home-hero {
    min-height: calc(100svh - var(--dyp-header-height) - 30px);
  }

  .dyp-home-hero__inner {
    gap: 30px;
    padding: 38px 0 54px;
  }

  .dyp-home-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 0.6875rem;
  }

  .dyp-home-hero__title {
    font-size: clamp(2.05rem, 9.5vw, 2.65rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .dyp-home-hero__description {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .dyp-home-hero__actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .dyp-hero-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dyp-hero-button {
    transition: none;
  }

  .dyp-hero-button:hover,
  .dyp-hero-button:focus-visible {
    transform: none;
  }
}
