  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 47, 104, 0.18);
  background: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(122, 71, 96, 0.08);
}

.tools-directory__chip:hover {
  background: rgba(255, 247, 250, 0.96);
}

.landing-card {
  padding: 1.3rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(65, 40, 51, 0.08);
  box-shadow: var(--shadow);
}

.landing-card--primary {
  background: linear-gradient(180deg, rgba(224, 236, 251, 0.95) 0%, rgba(241, 245, 255, 0.92) 100%);
}

.landing-card--tool {
  --tool-accent: #4d87ff;
  --tool-accent-dark: #3968d8;
  --tool-tint: rgba(77, 135, 255, 0.09);
  background:
    radial-gradient(circle at top right, var(--tool-tint), rgba(255, 255, 255, 0.94) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 250, 0.94) 100%);
}

.landing-card--exchange-generator {
  --tool-accent: #3f7cff;
  --tool-accent-dark: #315fd2;
  --tool-tint: rgba(63, 124, 255, 0.11);
}

.landing-card--random-wheel {
  --tool-accent: #ef2f68;
  --tool-accent-dark: #cf1d54;
  --tool-tint: rgba(239, 47, 104, 0.12);
}

.landing-card--random-name-picker {
  --tool-accent: #2f9d7e;
  --tool-accent-dark: #237660;
  --tool-tint: rgba(47, 157, 126, 0.12);
}

.landing-card--coin-flip {
  --tool-accent: #7a63ff;
  --tool-accent-dark: #5c48d3;
  --tool-tint: rgba(122, 99, 255, 0.11);
}

.landing-card--random-number {
  --tool-accent: #ff9f43;
  --tool-accent-dark: #e17d15;
  --tool-tint: rgba(255, 159, 67, 0.14);
}

.landing-card--countdown-timer {
  --tool-accent: #18a0b6;
  --tool-accent-dark: #0f7f91;
  --tool-tint: rgba(24, 160, 182, 0.13);
}

.landing-card--dice-roller {
  --tool-accent: #8a63d2;
  --tool-accent-dark: #6b47b1;
  --tool-tint: rgba(138, 99, 210, 0.12);
}

.landing-card--stopwatch {
  --tool-accent: #1d9b90;
  --tool-accent-dark: #15756d;
  --tool-tint: rgba(29, 155, 144, 0.13);
}

.landing-card--yes-no-wheel {
  --tool-accent: #ff6d4d;
  --tool-accent-dark: #d84f34;
  --tool-tint: rgba(255, 109, 77, 0.13);
}

.landing-card--random-team-generator {
  --tool-accent: #4fa35f;
  --tool-accent-dark: #397a46;
  --tool-tint: rgba(79, 163, 95, 0.13);
}

.landing-card--random-letter-generator {
  --tool-accent: #ffb347;
  --tool-accent-dark: #e0881a;
  --tool-tint: rgba(255, 179, 71, 0.14);
}

.landing-card--pomodoro-timer {
  --tool-accent: #e24f45;
  --tool-accent-dark: #bc362d;
  --tool-tint: rgba(226, 79, 69, 0.14);
}

.landing-card--css-gradient-generator {
  --tool-accent: #ff6d7a;
  --tool-accent-dark: #d44b70;
  --tool-tint: rgba(255, 109, 122, 0.14);
}

.landing-card--box-shadow-generator {
  --tool-accent: #5f6cff;
  --tool-accent-dark: #414dcf;
  --tool-tint: rgba(95, 108, 255, 0.14);
}

.landing-card--contrast-checker {
  --tool-accent: #138d8c;
  --tool-accent-dark: #0f6d6d;
  --tool-tint: rgba(19, 141, 140, 0.15);
}

.landing-card--regex-tester {
  --tool-accent: #5a6cff;
  --tool-accent-dark: #3f4fcf;
  --tool-tint: rgba(90, 108, 255, 0.13);
}

.landing-card--timestamp-converter {
  --tool-accent: #1f97a8;
  --tool-accent-dark: #167283;
  --tool-tint: rgba(31, 151, 168, 0.13);
}

.landing-card--json-to-csv {
  --tool-accent: #f09b35;
  --tool-accent-dark: #ce7818;
  --tool-tint: rgba(240, 155, 53, 0.14);
}

.landing-card__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.landing-card__badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(180deg, var(--tool-accent) 0%, var(--tool-accent-dark) 100%);
}

.landing-card__badge--text {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
}

.landing-card__title-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.landing-card__title-row h2 {
  margin: 0;
}

.landing-card__actions {
  margin-top: 1.1rem;
}

.landing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.landing-cta:hover {
  background: linear-gradient(180deg, #e62961 0%, var(--accent-dark) 100%);
}

.landing-card--tool .landing-cta {
  background: linear-gradient(180deg, var(--tool-accent) 0%, var(--tool-accent-dark) 100%);
}

.landing-card--tool .landing-cta:hover {
  filter: brightness(0.98);
}

.landing__history {
  display: grid;
  gap: 1rem;
}

.landing--seo {
  gap: 2rem;
}

