:root {
  --background: #2d1d14;
  --background-gradient: radial-gradient(circle at top, #3a2416 0%, #22150f 100%);
  --text: #f5ebdd;
  --text-muted: rgba(245, 235, 221, 0.78);
  --accent: #d8c1a5;
  --accent-dark: #c7ac8a;
  --border: rgba(245, 235, 221, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--background);
  background-image: var(--background-gradient);
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 760px;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.logo {
  width: 220px;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 32px;
}

.eyebrow {
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 16px;
}

.description.small {
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #2d1d14;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .container {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .logo {
    width: 180px;
    max-width: 75%;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
