/* PeachBitch landing — static HTML/CSS for ISP hosting */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Ubuntu,
    Cantarell,
    "Noto Sans",
    Arial,
    sans-serif;
  color: #2a1a14;
  /* Фирменный персиковый фон */
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #ffe4d4 0%, transparent 55%),
    linear-gradient(165deg, #ffcab0 0%, #ff8a5c 48%, #ff6c85 100%);
  background-attachment: fixed;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.5vw, 1.75rem);
  padding: clamp(1.25rem, 5vw, 2.5rem);
  text-align: center;
}

.hero {
  width: min(78vw, 320px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 18px 40px rgba(120, 40, 30, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.35);
}

.title {
  margin: 0;
  max-width: 22rem;
  font-size: clamp(1.15rem, 4.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #2a1210;
  text-wrap: balance;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: #2a1210;
  color: #fff7f2;
  font-size: clamp(1rem, 3.6vw, 1.125rem);
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(42, 18, 16, 0.28);
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background: #3d1c18;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(42, 18, 16, 0.34);
}

.btn:active {
  transform: translateY(1px);
}

@media (max-width: 380px) {
  .hero {
    width: min(86vw, 280px);
    border-radius: 22px;
  }
}

@media (min-width: 768px) {
  .hero {
    width: min(42vw, 380px);
    border-radius: 32px;
  }

  .title {
    max-width: 26rem;
  }
}
