:root {
  --bg: #f8fafc;
  --bg-soft: #eef5ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #d7e0ec;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, var(--bg-soft), transparent 45%),
    var(--bg);
  line-height: 1.6;
}

main {
  width: min(92%, 760px);
  margin: 0 auto;
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 1rem;
  animation: fadeUp 420ms ease-out both;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

h1,
h2,
h3 {
  font-family: Sora, Inter, sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 10vw, 6rem);
  line-height: 1.05;
}

.lead {
  color: var(--muted);
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.68rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: 160ms ease;
}

.icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.75);
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 100vh;
  }
}

@media (max-width: 640px) {
  .actions {
    width: 100%;
    justify-content: center;
  }
}
