.home {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  font-family: 'Inter', -apple-system, sans-serif;
}
.home-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
.home-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.home-brand-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.home-brand-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.home-brand-name { color: var(--text); }
.home-brand-name .muted { color: var(--muted); font-weight: 500; }
.home-nav-cta {
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--accent-now);
  background: transparent;
}
.home-nav-cta:hover { background: var(--accent-now); color: #ffffff; }

.hero { margin-bottom: 80px; }
.hero-title {
  font-size: 48px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--text);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 28px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-now);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(3, 205, 138, 0.45);
  transition: transform 0.15s, filter 0.15s;
}
.hero-cta:hover { transform: translateY(-1px); filter: brightness(1.07); }
.hero-cta svg { width: 16px; height: 16px; }

.section { margin-bottom: 72px; }
.section-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--text);
}
.section-lede {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 24px;
}
.step-num {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  background: var(--brand-tint);
  color: var(--today-deep);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 12px;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.what-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.what-card h3 {
  font-size: 15px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.what-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.what-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.what-list .phase-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  flex: none;
}
.feature-list { padding-left: 0; list-style: none; }
.feature-list li {
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  display: flex; align-items: flex-start; gap: 10px;
}
.feature-list li::before {
  content: '✓';
  color: var(--ok);
  font-weight: 700;
  flex: none;
}

.feedback-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.feedback-card h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.feedback-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}
.feedback-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-now);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 16px -6px rgba(3, 205, 138, 0.45);
  transition: transform 0.15s, filter 0.15s;
  white-space: nowrap;
}
.feedback-link:hover { transform: translateY(-1px); filter: brightness(1.07); }
.feedback-link svg { width: 14px; height: 14px; }

.home-foot {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted-soft);
  text-align: center;
}

@media (max-width: 800px) {
  .hero-title { font-size: 36px; }
  .steps, .what-grid { grid-template-columns: 1fr; }
  .feedback-card { grid-template-columns: 1fr; text-align: left; }
  .feedback-link { justify-self: flex-start; }
}
