:root {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17201c;
  background: #f0f3ed;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(178, 229, 190, .55), transparent 31rem),
    radial-gradient(circle at 100% 100%, rgba(170, 194, 228, .42), transparent 34rem),
    #f0f3ed;
}

.shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) 0 36px;
}

.hero { max-width: 700px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #477055;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #39a85f;
  box-shadow: 0 0 0 5px rgba(57, 168, 95, .13);
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 92px);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: .92;
}

.hero p {
  margin: 25px 0 0;
  color: #5f6863;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(48px, 8vw, 82px);
}

.tool {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 23px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(24, 35, 29, .1);
  border-radius: 25px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 50px rgba(42, 56, 48, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tool:hover, .tool:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(24, 35, 29, .24);
  box-shadow: 0 24px 58px rgba(42, 56, 48, .15);
  outline: none;
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.03em;
  background: #213229;
}

.tool-claw .icon { background: #745fbd; }
.tool-dsh .icon { background: #bd6b47; }

.copy { margin-top: auto; }
.label { color: #718078; font-size: 12px; font-weight: 720; letter-spacing: .09em; }
h2 { margin: 7px 0 0; font-size: 26px; letter-spacing: -.04em; }
.tool p { margin: 12px 36px 0 0; color: #626d67; line-height: 1.55; }
.arrow { position: absolute; right: 22px; bottom: 23px; font-size: 23px; }

footer {
  display: flex;
  gap: 9px;
  margin-top: 34px;
  color: #748078;
  font-size: 12px;
}

@media (max-width: 760px) {
  .shell { width: min(100% - 26px, 520px); padding-top: 50px; }
  .tools { grid-template-columns: 1fr; }
  .tool { min-height: 210px; }
}

@media (prefers-color-scheme: dark) {
  :root { color: #edf3ef; background: #101512; }
  body {
    background:
      radial-gradient(circle at 8% 0%, rgba(36, 94, 54, .45), transparent 31rem),
      radial-gradient(circle at 100% 100%, rgba(41, 60, 87, .5), transparent 34rem),
      #101512;
  }
  .eyebrow { color: #83c695; }
  .hero p, .tool p { color: #a9b4ad; }
  .tool {
    background: rgba(28, 35, 31, .82);
    border-color: rgba(238, 245, 240, .1);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  }
  .tool:hover, .tool:focus-visible { border-color: rgba(238, 245, 240, .25); }
  .icon { color: #17201c; background: #a8dcb6; }
  .tool-claw .icon { color: #fff; background: #806bca; }
  .tool-dsh .icon { color: #fff; background: #bd6b47; }
  .label, footer { color: #859089; }
}
