.home-view {
  padding: 96px 0 80px;
}

.eyebrow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 1px;
  background: var(--mint);
  content: "";
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--mint-dark);
}

.hero p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.tools-section {
  margin-top: 76px;
}

.section-heading {
  display: flex;
  margin-bottom: 20px;
  align-items: end;
  justify-content: space-between;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.tool-count {
  color: var(--muted);
  font-size: 13px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 215px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(221, 233, 228, 0.95);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 8px 35px rgba(48, 84, 72, 0.04);
  color: var(--ink);
  flex-direction: column;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-card:hover {
  border-color: rgba(104, 189, 156, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.tool-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.tool-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.card-arrow {
  position: absolute;
  top: 31px;
  right: 30px;
  color: #a4b4af;
  font-size: 22px;
  transition: color 180ms ease, transform 180ms ease;
}

.tool-card:hover .card-arrow {
  color: var(--mint-dark);
  transform: translate(3px, -3px);
}

.coming-card {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.coming-card:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.coming-card .tool-icon {
  background: #f1f4f2;
  color: #9aaaa5;
}
