:root {
  --bg: #f4efe7;
  --bg-deep: #e8dfd0;
  --paper: #fffbf5;
  --ink: #121926;
  --muted: #47515f;
  --line: #d5c8b3;
  --accent: #b24516;
  --accent-2: #0f766e;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, #fff7e9 0%, rgba(255, 247, 233, 0) 42%),
    radial-gradient(circle at 92% 86%, #d8ece8 0%, rgba(216, 236, 232, 0) 38%),
    linear-gradient(155deg, var(--bg), var(--bg-deep));
  min-height: 100%;
  font-family: "IBM Plex Sans", sans-serif;
}

.site {
  max-width: 980px;
  margin: 2.4rem auto 3rem;
  padding: 0 1.1rem;
  position: relative;
  z-index: 1;
}

.bg-shape {
  position: fixed;
  z-index: 0;
  border-radius: 100%;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}

.bg-shape-one {
  width: 280px;
  height: 280px;
  background: #f5d9be;
  top: -90px;
  right: -30px;
}

.bg-shape-two {
  width: 330px;
  height: 330px;
  background: #c4e5dc;
  bottom: -120px;
  left: -70px;
}

.hero,
.panel,
.footer {
  background: color-mix(in srgb, var(--paper) 90%, white 10%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(45, 38, 25, 0.09);
}

.hero {
  padding: 2.1rem;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0.6rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1.05;
  max-width: 16ch;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.lead {
  margin: 0;
  max-width: 60ch;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #c35f2c);
  color: #fff;
  box-shadow: 0 8px 18px rgba(178, 69, 22, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.panel {
  margin-top: 1rem;
  padding: 1.4rem 1.2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.card {
  background: linear-gradient(170deg, #ffffff, #fcf5eb);
  border: 1px solid #e4d9c8;
  border-radius: 14px;
  padding: 0.95rem;
}

.card p,
.status,
.workflow {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.workflow {
  padding-left: 1.2rem;
}

.workflow li {
  margin: 0.45rem 0;
}

.footer {
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 460ms ease forwards;
}

.site > :nth-child(2) {
  animation-delay: 90ms;
}

.site > :nth-child(3) {
  animation-delay: 150ms;
}

.site > :nth-child(4) {
  animation-delay: 220ms;
}

.site > :nth-child(5) {
  animation-delay: 270ms;
}

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

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

@media (max-width: 680px) {
  .hero {
    padding: 1.4rem 1.1rem;
  }

  .panel,
  .footer {
    padding: 1.1rem 1rem;
  }
}
