* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-display);
  background: #e9e9ea;
  color: var(--neutral-900);
}

.canvas-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 24px;
}

.canvas {
  position: relative;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(66,176,41,0.16), rgba(66,176,41,0) 70%);
  pointer-events: none;
}

.dot-field {
  position: absolute;
  background-image: radial-gradient(rgba(49,138,29,0.13) 2.5px, transparent 2.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

.logo {
  display: block;
  height: auto;
}

.headline {
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.015em;
}

.headline .dark { color: var(--neutral-900); }
.headline .green { color: var(--brand-600); }

.footnote {
  color: var(--neutral-600);
  font-weight: 400;
}

.card {
  background: var(--white);
  box-shadow: 0 1px 2px rgba(26,26,28,0.04), 0 16px 32px rgba(26,26,28,0.08);
  border: 1px solid rgba(26,26,28,0.06);
}

.cta-pill {
  background: var(--brand-500);
  background: linear-gradient(155deg, var(--brand-400), var(--brand-600));
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 24px rgba(49,138,29,0.28);
}

.step-dot {
  background: var(--brand-500);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(59,166,35,0.35);
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  width: 2px;
  background: var(--brand-50);
  z-index: 1;
}
