:root {
  --ink: #1a2430;
  --sand: #e8dcc8;
  --gulf: #1f6f8b;
  --sunset: #c45c26;
  --foam: #f7f1e8;
  --mist: rgba(31, 111, 139, 0.18);
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--ink);
  background: var(--foam);
  overflow-x: hidden;
}
.sky {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 10% -10%, #f0a05a 0%, transparent 55%),
    radial-gradient(900px 500px at 90% 0%, #7ec8e3 0%, transparent 50%),
    linear-gradient(180deg, #f6e7d4 0%, #d9eef5 45%, #b9d6c2 100%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { filter: saturate(1); transform: scale(1); }
  to { filter: saturate(1.08); transform: scale(1.03); }
}
.hero, .wizard {
  max-width: 52rem;
  margin: 0 auto;
  padding: min(18vh, 8rem) 1.5rem 4rem;
}
.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 12vw, 6rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  line-height: 0.9;
  color: var(--gulf);
  animation: rise 0.9s ease-out both;
}
.brand a { color: inherit; text-decoration: none; }
h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin: 0 0 0.75rem;
  max-width: 18ch;
  animation: rise 1s 0.1s ease-out both;
}
.lede {
  font-size: 1.15rem;
  max-width: 36ch;
  margin: 0 0 1.75rem;
  animation: rise 1.1s 0.15s ease-out both;
}
.cta {
  display: inline-block;
  background: var(--sunset);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
  border: none;
  animation: rise 1.2s 0.2s ease-out both;
}
.cta:hover { filter: brightness(1.05); }
.canvas {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .canvas { grid-template-columns: repeat(3, 1fr); }
}
.node {
  background: rgba(247, 241, 232, 0.72);
  border: 1px solid var(--mist);
  padding: 1.25rem;
  min-height: 10rem;
  backdrop-filter: blur(6px);
  animation: rise 1s ease-out both;
}
.node:nth-child(2) { animation-delay: 0.12s; }
.node:nth-child(3) { animation-delay: 0.24s; }
.node h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  color: var(--gulf);
  font-size: 1.6rem;
}
.node p { margin: 0; }
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
