:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --surface-2: #f0ede8;
  --border: #e2ddd7;
  --text: #1a1814;
  --muted: #6b6560;
  --accent: #0f7e84;
  --accent-hover: #0a5f64;
  --accent-text: #ffffff;
  --ok: #2e7d32;
  --shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.hero__inner {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 48px 40px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.logo {
  color: var(--accent);
  margin-bottom: 20px;
}

.title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-text);
  background: var(--accent);
  border-radius: 12px;
  padding: 14px 32px;
  transition: background .18s ease, transform .18s ease;
}

.cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .hero__inner {
    padding: 36px 24px;
  }
  .title {
    font-size: 36px;
  }
}
