:root {
  color-scheme: light;
  --ink: #1d2528;
  --muted: #536164;
  --line: #d9e1df;
  --panel: #f7faf8;
  --accent: #1f7a6b;
  --warm: #cc6b3d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #edf2f0;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 32px;
  align-items: center;
  min-height: 62vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 5.6rem;
  line-height: .92;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.device {
  min-height: 360px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.95), rgba(255,255,255,0) 30%),
    linear-gradient(150deg, #ffffff, #dfe9e5);
  position: relative;
  overflow: hidden;
}

.device::before,
.device::after,
.device span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.device::before {
  width: 56%;
  aspect-ratio: 1;
  left: 22%;
  top: 18%;
  border: 24px solid rgba(31, 122, 107, .18);
}

.device::after {
  width: 42%;
  aspect-ratio: 1;
  left: 29%;
  top: 26%;
  background: linear-gradient(135deg, rgba(31,122,107,.72), rgba(204,107,61,.66));
}

.device span {
  inset: auto 18% 12%;
  height: 14px;
  background: rgba(29,37,40,.18);
  filter: blur(8px);
}

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

article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

article p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .device {
    min-height: 280px;
  }

  h1 {
    font-size: 3rem;
  }
}
