/* Letomix owned tools showcase — isolated component */
.lt-tools-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid rgba(17, 24, 255, .17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(86, 103, 255, .16), transparent 34%),
    radial-gradient(circle at 5% 95%, rgba(64, 205, 255, .12), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #f8f9ff 58%, #f3fbff 100%);
  box-shadow: 0 24px 60px rgba(17, 24, 255, .10);
}
.lt-tools-showcase::before {
  position: absolute;
  inset: -35% -20% auto auto;
  z-index: -1;
  width: 340px;
  height: 340px;
  content: "";
  border-radius: 50%;
  background: rgba(17, 24, 255, .06);
  pointer-events: none;
}
.lt-tools-showcase-inner { padding: clamp(24px, 4vw, 42px); }
.lt-tools-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}
.lt-tools-showcase-copy { min-width: 0; }
.lt-tools-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 11px;
  border: 1px solid rgba(17, 24, 255, .17);
  border-radius: 999px;
  color: #2734b8;
  background: rgba(17, 24, 255, .07);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.lt-tools-showcase h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.lt-tools-showcase-intro {
  max-width: 720px;
  margin: 12px 0 0;
  color: #667085;
  font-size: 1rem;
  line-height: 1.7;
}
.lt-tools-showcase-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(17, 24, 255, .20);
  border-radius: 13px;
  color: #1118ff;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lt-tools-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.lt-tool-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 238px;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .09);
  border-radius: 21px;
  color: inherit;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lt-tool-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  content: "";
  border-radius: 50%;
  background: var(--lt-tool-glow, rgba(17, 24, 255, .08));
  pointer-events: none;
}
.lt-tool-card[data-tool="background"] { --lt-tool-glow: rgba(91, 72, 255, .13); }
.lt-tool-card[data-tool="compress"] { --lt-tool-glow: rgba(0, 166, 255, .13); }
.lt-tool-card[data-tool="exif"] { --lt-tool-glow: rgba(14, 180, 126, .13); }
.lt-tool-card.is-current {
  border-color: rgba(17, 24, 255, .35);
  box-shadow: 0 14px 34px rgba(17, 24, 255, .11), inset 0 0 0 1px rgba(17, 24, 255, .06);
}
.lt-tool-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.lt-tool-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(17, 24, 255, .11);
  border-radius: 15px;
  color: #1118ff;
  background: linear-gradient(145deg, rgba(17, 24, 255, .09), rgba(56, 191, 255, .08));
}
.lt-tool-card-icon svg { width: 25px; height: 25px; }
.lt-tool-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #344054;
  background: #f2f4f7;
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.lt-tool-card-label.is-live { color: #067647; background: #dcfae6; }
.lt-tool-card-label.is-current { color: #3538cd; background: #e0e7ff; }
.lt-tool-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 8px;
  color: #101828;
  font-size: 1.18rem;
  line-height: 1.25;
}
.lt-tool-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #667085;
  line-height: 1.62;
}
.lt-tool-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}
.lt-tool-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 9px;
  border: 1px solid #eaecf0;
  border-radius: 999px;
  color: #475467;
  background: rgba(255,255,255,.84);
  font-size: .75rem;
  font-weight: 700;
}
.lt-tool-card-arrow {
  position: absolute;
  right: 18px;
  bottom: 17px;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #1118ff;
  background: #eef2ff;
  font-weight: 900;
}
.lt-tool-card .lt-tool-card-meta { padding-right: 37px; }
.lt-tools-showcase-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 17px 0 0;
  color: #667085;
  font-size: .88rem;
  line-height: 1.5;
}
.lt-tools-showcase-note::before {
  display: inline-grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  content: "✓";
  border-radius: 50%;
  color: #067647;
  background: #dcfae6;
  font-weight: 900;
}
@media (hover:hover) and (pointer:fine) {
  .lt-tool-card:hover,
  .lt-tools-showcase-all:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 24, 255, .30);
    box-shadow: 0 18px 40px rgba(17, 24, 255, .12);
  }
}
@media (max-width: 900px) {
  .lt-tools-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lt-tool-card:last-child { grid-column: 1 / -1; min-height: 210px; }
}
@media (max-width: 640px) {
  .lt-tools-showcase { border-radius: 22px; }
  .lt-tools-showcase-inner { padding: 20px; }
  .lt-tools-showcase-head { grid-template-columns: 1fr; align-items: start; gap: 15px; }
  .lt-tools-showcase-all { width: 100%; white-space: normal; text-align: center; }
  .lt-tools-showcase-grid { grid-template-columns: 1fr; gap: 12px; }
  .lt-tool-card,
  .lt-tool-card:last-child { grid-column: auto; min-height: 0; padding: 18px; }
  .lt-tool-card h3 { margin-top: 15px; }
  .lt-tool-card-meta { padding-top: 15px; }
}
@media (max-width: 390px) {
  .lt-tools-showcase-inner { padding: 17px; }
  .lt-tool-card-top { gap: 8px; }
  .lt-tool-card-label { white-space: normal; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .lt-tool-card,
  .lt-tools-showcase-all { transition: none; }
}
