:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f0e8;
  color: #1f1b18;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
html, body {
  min-height: 100%;
}
body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(239, 219, 187, 0.35), transparent 35%),
    linear-gradient(180deg, #f9f5ef 0%, #f2ebe2 100%);
}
img {
  max-width: 100%;
  display: block;
}
.page {
  min-height: 100vh;
  padding: 32px 16px;
  display: grid;
  place-items: center;
}
.hero {
  width: min(100%, 820px);
}
.hero__card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 27, 24, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(31, 27, 24, 0.12);
  padding: 32px;
}
.hero__logo {
  width: min(180px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  object-fit: contain;
}
h1 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-align: center;
}
p.lead {
  margin: 0 auto 28px;
  max-width: 620px;
  text-align: center;
  color: #3E2723;
}
.buttons {
  display: grid;
  gap: 14px;
}
.buttons--main {
  margin-top: 16px;
}
.grid-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 18px;
  font-weight: 700;
  color: #3E2723;
  background: #fff;
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.button__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(62, 39, 35, 0.08);
}
.button--main {
  background: #EAE3D9;
  color: #3E2723;
}
.button--white {
  background: #FFFFFF;
  border: 1px solid rgba(62, 39, 35, 0.12);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}
.social-link {
  display: inline-flex;
  color: #3E2723;
  text-decoration: none;
}
.social-link svg {
  width: 22px;
  height: 22px;
  fill: #3E2723;
}
.footer {
  margin-top: 24px;
  text-align: center;
  color: #7a6b5d;
  font-size: 0.95rem;
}
@media (max-width: 480px) {
  .hero__card {
    padding: 24px 18px;
  }
  .buttons {
    gap: 12px;
  }
  .grid-buttons {
    grid-template-columns: 1fr;
  }
}
