:root {
  --bg: #f7f5f0;
  --surface: rgba(255, 255, 255, 0.72);
  --text: #1f1f1c;
  --muted: #6f6a61;
  --line: rgba(31, 31, 28, 0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 20px;
  --max-width: 720px;
}

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.03), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.02), transparent 30%),
    var(--bg);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero__content {
  width: min(100%, var(--max-width));
  padding: 3rem 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__text {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero__link {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.hero__link:hover,
.hero__link:focus-visible {
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(31, 31, 28, 0.18);
}

.hero__link:focus-visible {
  outline: 2px solid rgba(31, 31, 28, 0.25);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .hero {
    padding: 1.25rem;
  }

  .hero__content {
    padding: 2.25rem 1.25rem;
  }

  .hero__text {
    font-size: 1rem;
  }
}
