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

body {
  color: #161616;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  overflow-x: hidden;
  background: radial-gradient(120% 80% at 50% -20%, #fff7ed 0%, transparent 55%),
    linear-gradient(165deg, #fdfcfa 0%, #f0ebe4 100%);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  max-width: 52rem;
}

.logo {
  flex-shrink: 0;
  filter: drop-shadow(0 12px 28px rgba(22, 22, 22, 0.08));
}

.hero svg {
  width: clamp(7rem, 20vmin, 11rem);
  height: auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: min(100%, 18rem);
}

.hero-kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b6560;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #111;
  font-optical-sizing: auto;
}

@media (max-width: 36rem) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
  }
}
