.home-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 88px);
  padding: 0 20px 88px;
}

.home-card {
  width: 100%;
  max-width: 840px;
  padding: 64px 48px;
  background: #ffffff;
  border: 1px solid #E6EEF4;
  border-radius: 32px;
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 12px;
}

.home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-content h1 {
  margin: 0;
  color: #141414;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.home-description {
  max-width: 650px;
  margin: 24px auto 0;
  color: #657582;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.6;
}

.install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 36px;
  padding: 12px 20px;
  color: #ffffff;
  background: #027FFF;
  border: 1px solid #027FFF;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.install-button:hover {
  color: #ffffff;
  background: #1990FF;
  border-color: #1990FF;
}

.install-button:active {
  color: #ffffff;
  background: #006EDB;
  border-color: #006EDB;
  transform: translateY(1px);
}

.install-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(2, 127, 255, 0.25);
}

.chrome-icon {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

@media (max-width: 700px) {
  .home-main {
    min-height: calc(100vh - 72px);
    padding: 0 12px 64px;
  }

  .home-card {
    padding: 48px 24px;
    border-radius: 24px;
  }

  .home-description {
    margin-top: 18px;
  }

  .install-button {
    width: 100%;
    max-width: 320px;
    margin-top: 30px;
  }
}

@media (max-width: 420px) {
  .home-main {
    min-height: calc(100vh - 64px);
    padding: 0 8px 48px;
  }

  .home-card {
    padding: 40px 18px;
    border-radius: 20px;
  }

  .install-button {
    margin-top: 26px;
  }
}
