:root {
  --bg: #f8f4ea;
  --text: #1f2a1f;
  --accent: #0e8f75;
  --accent-2: #f2a65a;
  --card: #fffdf8;
  --line: #d7cfbf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, #f7d8a2 0%, transparent 32%),
    radial-gradient(circle at 80% 80%, #b5e2d7 0%, transparent 34%),
    var(--bg);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 2px solid var(--line);
  border-radius: 24px;
  --spin: -8deg;
  transform: rotate(var(--spin));
}

.shape-a {
  width: 280px;
  height: 140px;
  top: 8%;
  left: 4%;
  animation: drift 7s ease-in-out infinite;
}

.shape-b {
  width: 220px;
  height: 120px;
  right: 6%;
  bottom: 8%;
  --spin: 12deg;
  animation: drift 8s ease-in-out infinite reverse;
}

.card {
  width: min(780px, 100%);
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(23, 35, 26, 0.08);
  animation: pop-in 450ms ease-out;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #345249;
}

h1 {
  margin: 0 0 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.03;
}

.lead {
  margin: 0;
  max-width: 64ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

.notes {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.notes li {
  padding: 10px 12px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fffaf0;
  animation: reveal 700ms ease both;
}

.notes li:nth-child(2) {
  animation-delay: 80ms;
}

.notes li:nth-child(3) {
  animation-delay: 160ms;
}

.actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.actions a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--text);
  color: var(--text);
  font-weight: 700;
}

.actions a:first-child {
  background: var(--accent);
  border-color: var(--accent);
  color: #f8fffc;
}

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

.smallprint {
  margin: 16px 0 0;
  font-size: 0.85rem;
  color: #5f6658;
}

code {
  background: #f1ecdf;
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 640px) {
  .card {
    padding: 22px;
  }

  .notes li {
    font-size: 0.95rem;
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(var(--spin));
  }
  50% {
    transform: translateY(-7px) rotate(calc(var(--spin) + 2deg));
  }
}
