:root {
  color-scheme: only light;
  forced-color-adjust: none;
  color-adjust: exact;
  -webkit-color-adjust: exact;
}
* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; }
body {
  min-height: 100vh;
  margin: 0;
  color: #4d5c98;
  forced-color-adjust: none;
  color-adjust: exact;
  -webkit-color-adjust: exact;
  background:
    radial-gradient(circle at 15% 15%, rgba(244, 174, 204, .28), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(161, 204, 242, .32), transparent 36%),
    radial-gradient(circle at 52% 90%, rgba(190, 181, 239, .25), transparent 40%),
    linear-gradient(135deg, #fbf6fa 0%, #f1effb 48%, #eaf6fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.module-page {
  display: flex;
  min-height: 100svh;
  max-width: 88rem;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(2rem, 7vh, 5rem);
}
.tools-main {
  width: min(100%, 58rem);
  margin: auto;
  padding: clamp(3.5rem, 10vh, 8rem) 0 clamp(2rem, 7vh, 5rem);
}
.eyebrow {
  margin: 0 0 1rem;
  color: #ee91b9;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
}
h1 {
  max-width: 38rem;
  margin: 0;
  color: #4d5c98;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.25;
}
.lead {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: #6979ad;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.9;
}
.tool-list { margin-top: clamp(2rem, 5vh, 3.5rem); }
.tool-card {
  display: flex;
  min-height: 9rem;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(126, 158, 238, .4);
  border-radius: 1.3rem;
  color: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .58), rgba(246, 220, 237, .42) 52%, rgba(215, 236, 249, .52));
  box-shadow: 0 .8rem 2.4rem rgba(101, 115, 178, .11);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 145, 185, .72);
  box-shadow: 0 1.1rem 2.8rem rgba(101, 115, 178, .16);
}
.tool-icon {
  display: grid;
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  color: #6faeda;
  border: 1px solid rgba(111, 174, 218, .6);
  border-radius: 1rem;
}
.tool-icon svg { width: 2.2rem; height: 2.2rem; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linejoin: round; }
.tool-copy { display: grid; min-width: 0; gap: .3rem; }
.tool-label { color: #ee91b9; font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.tool-copy strong { color: #4d5c98; font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 550; }
.tool-copy > span:last-child { color: #6979ad; line-height: 1.6; }
.tool-arrow { margin-left: auto; color: #7699e5; font-size: 2rem; }
@media (max-width: 700px) {
  .tools-main { padding-top: clamp(3rem, 9vh, 5rem); }
  .tool-card { align-items: flex-start; }
  .tool-arrow { align-self: center; }
}
@media (max-width: 430px) {
  .module-page { padding-left: 1rem; padding-right: 1rem; }
  .tool-card { display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; padding: 1rem; }
  .tool-icon { width: 2.8rem; height: 2.8rem; }
  .tool-icon svg { width: 1.7rem; height: 1.7rem; }
  .tool-copy > span:last-child { font-size: .9rem; }
}
