.home-screen {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 55%);
  padding: clamp(32px, 5vw, 72px) clamp(24px, 7vw, 96px) clamp(56px, 10vw, 120px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-frame {
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 64px);
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-header__logo {
  width: clamp(120px, 14vw, 180px);
  height: auto;
}

.home-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #c62c2c 0%, #931515 100%);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(198, 44, 44, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(198, 44, 44, 0.3);
}

.hero-card {
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  padding: clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

.hero-card__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9ca3c7;
}

.hero-card__title {
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.15;
  font-weight: 800;
  color: #102347;
  text-transform: uppercase;
  max-width: 18ch;
}

.hero-card__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b0b7d0;
}

.hero-card__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-action--primary {
  background: linear-gradient(135deg, #c62c2c 0%, #991b1b 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(198, 44, 44, 0.24);
}

.hero-action--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(198, 44, 44, 0.3);
}

.hero-action--outline {
  background: #1f4ed8;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(31, 78, 216, 0.24);
}

.hero-action--outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(31, 78, 216, 0.32);
}

.hero-card__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card__portrait {
  width: min(280px, 70vw);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.3);
  background: radial-gradient(circle at top, rgba(29, 78, 216, 0.18), transparent 60%);
}

.hero-card__portrait img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.vision-card {
  background: #ffe9e9;
  border-radius: 26px;
  border: 1px solid #ffc7c7;
  padding: clamp(20px, 5vw, 44px);
  box-shadow: 0 18px 42px rgba(220, 38, 38, 0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: min(820px, 100%);
  text-align: center;
}

.vision-card__title {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: #a41e1e;
}

.vision-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #5a1c1c;
}

@media (min-width: 768px) {
  .hero-card__actions {
    flex-direction: row;
  }

  .hero-card__actions .hero-action {
    min-width: 220px;
  }
}

@media (max-width: 900px) {
  .home-screen {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .home-frame {
    gap: 40px;
  }

  .hero-card {
    border-radius: 28px;
    gap: 24px;
  }

  .hero-card__title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .hero-card__subtitle {
    letter-spacing: 0.2em;
  }

  .vision-card {
    border-radius: 22px;
  }
}

@media (min-width: 992px) {
  .hero-card {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card__info {
    flex: 1;
  }

  .hero-card__media {
    flex: 0 0 340px;
    justify-content: flex-end;
  }

  .hero-card__portrait {
    width: 320px;
    height: 420px;
    display: flex;
    align-items: stretch;
  }

  .hero-card__portrait img {
    object-fit: cover;
    height: 100%;
  }

  .vision-card {
    align-self: center;
    text-align: center;
  }
}
