/* Homepage sections: hero, what we do, process, what you get. */

/* Hero */
.hero-wrap {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--surface);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 180%, rgba(150, 201, 106, 0.42) 0%, transparent 38%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.08s ease-out;
}
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: calc(var(--nav-h) + 40px) var(--pad-x) 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero .eyebrow { margin-bottom: 32px; }
.hero h1 { margin-bottom: 28px; }
.hero .lede { margin-bottom: 48px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }

.section-head { margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 24px; }

/* Process */
.process { position: relative; overflow: hidden; }
.process-track {
  position: relative;
  margin-bottom: 40px;
  height: 14px;
  display: flex;
  align-items: center;
}
.process-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(150, 201, 106, 0.2);
}
.process-stop {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pistachio);
  transform: translateX(-50%);
}
.process-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pistachio);
  box-shadow: 0 0 16px 6px rgba(150, 201, 106, 0.55);
  transform: translateX(-50%);
  transition: left 0.12s ease-out;
  left: 12.5%;
  pointer-events: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step { transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.process-step .num {
  font-size: 44px;
  line-height: 1;
  color: var(--pistachio-30);
  margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--pistachio);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.process-step p { font-size: var(--text-base); color: var(--text-soft); }

@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .process-track { display: none; }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; }
}
