:root {
  --bg: #faf9f6;
  --text: #1f2937;
  --muted: #4a5568;
  --primary: #4a5568;
  --secondary: #a0b49c;
  --accent: #d9a77b;
  --panel: rgba(250, 249, 246, 0.72);
  --line: rgba(74, 85, 104, 0.12);
  --shadow: 0 28px 70px rgba(31, 41, 55, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at 18% 20%, rgba(160, 180, 156, 0.34), transparent 24rem),
    radial-gradient(circle at 82% 24%, rgba(217, 167, 123, 0.28), transparent 22rem),
    radial-gradient(circle at 50% 100%, rgba(74, 85, 104, 0.08), transparent 32rem),
    linear-gradient(180deg, #fdfcf8 0%, var(--bg) 55%, #f4f1ea 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  margin: 0 auto;
  max-width: 56rem;
  min-height: 100vh;
  padding: 2rem 1.25rem;
  display: grid;
  place-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: min(100%, 38rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  padding: 3rem 1.75rem 2.5rem;
  backdrop-filter: blur(8px);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.9;
}

.hero-glow-sage {
  background: rgba(160, 180, 156, 0.26);
  height: 12rem;
  left: -2rem;
  top: -2rem;
  width: 12rem;
}

.hero-glow-sand {
  background: rgba(217, 167, 123, 0.24);
  bottom: -2.5rem;
  height: 10rem;
  right: -1rem;
  width: 10rem;
}

.eyebrow {
  margin: 1.4rem 0 0.85rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

h1 {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.92;
  margin: 0;
  font-size: clamp(3.3rem, 10vw, 6.1rem);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.lede {
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 1rem auto 0;
  max-width: 26rem;
  position: relative;
  z-index: 1;
}

.microcopy {
  color: rgba(74, 85, 104, 0.86);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin: 1rem auto 0;
  max-width: 18rem;
  position: relative;
  z-index: 1;
}

.logo {
  display: block;
  width: min(100%, 26rem);
  margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgba(31, 41, 55, 0.12));
  position: relative;
  z-index: 1;
}

@media (max-width: 780px) {
  .page {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero {
    padding: 2.4rem 1.25rem 2.2rem;
  }

  .logo {
    width: min(100%, 20rem);
  }
}
