:root {
  --bg-ink: #111317;
  --bg-sand: #efe6d7;
  --bg-copper: #b56a3f;
  --text-main: #171513;
  --text-soft: #4d463f;
  --card: rgba(255, 255, 255, 0.74);
  --card-border: rgba(17, 19, 23, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 86% 10%, rgba(181, 106, 63, 0.35), transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(17, 19, 23, 0.18), transparent 40%),
    linear-gradient(145deg, var(--bg-sand) 0%, #f8f4eb 45%, #ece4d6 100%);
  display: grid;
  place-items: center;
  padding: 24px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(17, 19, 23, 0.35) 0.55px, transparent 0.55px);
  background-size: 4px 4px;
}

.hero {
  position: relative;
  width: min(920px, 100%);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(6px);
  box-shadow:
    0 22px 56px rgba(17, 19, 23, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  animation: rise 650ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.brand {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-ink);
  border: 1px solid rgba(17, 19, 23, 0.26);
  padding: 7px 12px;
  border-radius: 999px;
}

.eyebrow {
  margin: 18px 0 10px;
  font-size: 0.94rem;
  color: var(--text-soft);
}

h1 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 400;
  max-width: 18ch;
}

h1 span {
  color: var(--bg-copper);
  font-style: italic;
}

.intro {
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 2.2vw, 1.15rem);
  line-height: 1.7;
  max-width: 62ch;
  color: var(--text-soft);
}

.features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.features article {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 19, 23, 0.08);
  transform: translateY(8px);
  opacity: 0;
  animation: fadeUp 500ms ease forwards;
}

.features article:nth-child(2) {
  animation-delay: 90ms;
}

.features article:nth-child(3) {
  animation-delay: 180ms;
}

h2 {
  margin: 0;
  font-size: 1rem;
}

.features p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.cta {
  display: inline-block;
  margin-top: 26px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(120deg, var(--bg-ink), #2b3138);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(17, 19, 23, 0.25);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 780px) {
  .features {
    grid-template-columns: 1fr;
  }

  .hero {
    border-radius: 22px;
    padding: 22px;
  }

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