/* Clean futuristic home — solid colors, no heavy gradients */

.hero {
  position: relative;
  padding: 44px 0 40px;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--theme-dim);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--theme);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero__brand {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--theme);
}

.hero__title {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 4.4vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
  max-width: 14ch;
}

.hero__title-accent {
  color: var(--theme);
}

.hero__lead {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 58ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__metrics {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  display: none;
  gap: 10px;
  border-top: 1px solid var(--line);
  max-width: 42rem;
}

.hero__metrics li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.hero__metrics span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--theme);
  letter-spacing: 0.06em;
}

.tools-section {
  padding: 12px 0 44px;
}

.section-head {
  margin-bottom: 22px;
  max-width: 56ch;
}

.section-head__eyebrow,
.content__eyebrow,
.cta-band__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme);
}

.section-head__title,
.content__title {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-head__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 168px;
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  scroll-margin-top: calc(var(--header-h) + 12px);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.tool-card:hover {
  transform: translateY(-2px);
  border-color: var(--theme);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.tool-card__index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--theme);
}

.tool-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.25;
}

.tool-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
}

.tool-card__link {
  align-self: flex-end;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--theme);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  transition: background 0.18s var(--ease);
}

.tool-card:hover .tool-card__link {
  background: var(--theme-deep);
}

.tools-footnote {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.content {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.content__subtitle {
  margin: 26px 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--theme);
}

.content__subtitle:first-of-type {
  margin-top: 4px;
}

.content p {
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 64ch;
}

.content > p:last-child {
  margin-bottom: 0;
}

.content-steps {
  list-style: none;
  margin: 10px 0 22px;
  padding: 0;
  max-width: 64ch;
}

.content-steps li {
  margin: 0;
  padding: 16px 0 16px 16px;
  border-left: 2px solid var(--theme);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.content-steps li + li {
  border-top: 1px solid var(--line);
}

.content-steps__label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--theme);
}

.content-list {
  margin: 10px 0 22px;
  padding: 0;
  max-width: 64ch;
}

.content-list > div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.content-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.content-list dt {
  margin: 0 0 4px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}

.content-list dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.signal {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.signal__lead {
  margin: 0 0 24px;
  max-width: 54ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.signal__rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.signal__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.signal__item h3 {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme);
}

.signal__item p {
  margin: 0;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.cta-band {
  margin-top: 16px;
  padding: 40px 24px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--theme-dim);
}

.cta-band__title {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.cta-band__text {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 54ch;
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: calc(var(--i, 0) * 50ms);
}

[data-animate].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero {
    padding: 56px 0 48px;
  }

  .hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .tool-card {
    padding: 20px 18px;
    min-height: 180px;
  }

  .content,
  .signal {
    padding: 56px 0;
  }

  .signal__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .cta-band {
    padding: 48px 40px;
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 68px 0 56px;
  }

  .hero__lead,
  .content p,
  .section-head__text,
  .content-steps li {
    font-size: 1.06rem;
  }

  .signal__rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .signal__item {
    padding-right: 12px;
  }
}

@media (max-width: 639px) {
  .tool-card {
    min-height: 0;
    padding: 14px 12px;
    gap: 6px;
  }

  .tool-card__title {
    font-size: 0.92rem;
  }

  .tool-card__text {
    font-size: 0.78rem;
  }

  .tool-card__link {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
