:root {
  --ink: #12151a;
  --muted: #5a6573;
  --accent: #0b6e4f;
  --font: "DM Sans", sans-serif;
  --display: "Syne", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(800px 420px at 50% -10%, rgba(11, 110, 79, 0.12), transparent 55%),
    linear-gradient(180deg, #e8eef3 0%, #f4f6f8 100%);
}

.stage {
  width: min(720px, 100%);
  text-align: center;
  animation: rise 0.75s ease both;
}

.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.75rem;
  box-shadow: 0 24px 60px rgba(18, 21, 26, 0.14);
  animation: rise 0.75s ease 0.05s both;
}

.hero {
  margin: 0 auto;
  max-width: 28rem;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.5rem, 9vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand span { color: var(--accent); }

h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 4vw, 1.7rem);
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 auto 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 26rem;
  animation: rise 0.75s ease 0.12s both;
}

.meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  animation: rise 0.75s ease 0.2s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px) {
  .hero-image {
    border-radius: 14px;
    margin-bottom: 1.35rem;
  }
}
