.custom-home.page-content.home {
  min-height: calc(100vh - 120px);
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(255, 196, 80, 0.24) 0%, rgba(255, 196, 80, 0) 65%),
    radial-gradient(800px 500px at 100% 100%, rgba(255, 132, 0, 0.16) 0%, rgba(255, 132, 0, 0) 65%),
    linear-gradient(180deg, #fffdf8 0%, #fff7ea 100%);
  padding: 2.5rem 1rem 3rem;
}

body:has(.custom-home) .navbar,
body:has(.custom-home) .page-footer {
  display: none !important;
}

.custom-home .custom-home-shell {
  max-width: 1060px;
  margin: 0 auto;
}

.custom-home .custom-home-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 170, 40, 0.25);
  border-radius: 20px;
  padding: 2.2rem 2.1rem;
  box-shadow: 0 24px 50px rgba(150, 88, 9, 0.12);
  backdrop-filter: blur(3px);
}

.custom-home .custom-home-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.custom-home .custom-home-logo {
  width: min(170px, 42vw);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 10px 18px rgba(255, 138, 0, 0.22));
}

.custom-home .custom-home-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ffd395;
  background: #fff6e7;
  color: #b56a06;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.72rem;
}

.custom-home .title {
  margin-top: 1.1rem;
  margin-bottom: 0;
  text-align: center;
  color: #2e2a25;
  font-size: clamp(1.65rem, 3.6vw, 2.25rem);
}

.custom-home .description {
  max-width: 760px;
  margin: 0.95rem auto 0;
  text-align: center;
  font-size: 1.06rem;
  color: #5a5146;
  line-height: 1.65;
}

.custom-home .custom-home-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.custom-home .button {
  border-radius: 11px;
  font-weight: 700;
  padding: 0.75rem 1.15rem;
}

.custom-home .button.primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ffb300, #ff6a00);
  box-shadow: 0 10px 22px rgba(255, 125, 0, 0.28);
}

.custom-home .button.primary:hover {
  background: linear-gradient(135deg, #ffc12d, #ff7a1f);
}

.custom-home .button.basic {
  border-color: #ffb85a;
  color: #b66505;
  background: #fff9ef;
}

.custom-home .button.basic:hover {
  border-color: #ff9f20;
  color: #8e5108;
  background: #fff4e0;
}

.custom-home .custom-home-features {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.custom-home .custom-home-feature {
  background: #fffcf6;
  border: 1px solid #ffe3b9;
  border-radius: 14px;
  padding: 0.82rem 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.custom-home .feature-title {
  color: #7f4a00;
  font-size: 0.93rem;
  font-weight: 700;
}

.custom-home .feature-text {
  color: #6d5c47;
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .custom-home .custom-home-features {
    grid-template-columns: 1fr;
  }
}
