.hero-shell,
.story-layout,
.workflow-layout,
.showcase-layout,
.reviews-layout {
  display: grid;
  gap: 28px;
}
.hero { padding-top: 42px; }
.hero-copy { display: grid; gap: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { color: var(--muted-strong); font-size: 0.95rem; }
.hero-visual,
.ring-panel {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(7, 7, 7, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  background: radial-gradient(circle, rgba(189, 242, 109, 0.42), transparent 72%);
}
.glow-one { width: 220px; height: 220px; top: -36px; right: -40px; }
.glow-two { width: 280px; height: 280px; bottom: -100px; left: -80px; }
.glow-three {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.device {
  position: relative;
  width: min(100%, 320px);
  margin: 60px auto 0;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(180deg, #232323, #090909);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.device-notch {
  width: 34%;
  height: 20px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.device-screen {
  display: grid;
  gap: 16px;
  min-height: 520px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.95), rgba(8, 8, 8, 0.95));
}
.device-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}
.device-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
}
.device-header span,
.device-section small,
.ring-stat small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}
.device-header strong,
.ring-stat strong {
  display: block;
  margin-top: 4px;
  font-family: 'Lexend', system-ui, sans-serif;
  font-size: 1.5rem;
}
.chart-track {
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 8px;
  height: 130px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}
.chart-track span {
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--accent), rgba(118, 166, 70, 0.35));
}
.chart-track span:nth-child(1) { height: 40%; }
.chart-track span:nth-child(2) { height: 56%; }
.chart-track span:nth-child(3) { height: 48%; }
.chart-track span:nth-child(4) { height: 75%; }
.chart-track span:nth-child(5) { height: 68%; }
.chart-track span:nth-child(6) { height: 92%; }
.device-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}
.row,
.ring-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.row strong { color: var(--muted-strong); }
.row strong.positive { color: var(--accent); }
.stat-card,
.ring-stat {
  position: absolute;
  z-index: 1;
  max-width: 240px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(189, 242, 109, 0.16);
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(12px);
}
.stat-card-top { top: 24px; left: 16px; }
.stat-card-side { right: 16px; bottom: 40px; }
.ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(66vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 24px solid rgba(118, 166, 70, 0.18);
  box-shadow: inset 0 0 70px rgba(118, 166, 70, 0.18);
}
.pill-one { top: 18%; left: 10%; }
.pill-two { top: 46%; right: 10%; }
.pill-three { bottom: 16%; left: 14%; }
@media (min-width: 760px) {
  .hero-shell,
  .story-layout,
  .workflow-layout,
  .showcase-layout,
  .reviews-layout {
    align-items: center;
  }
  .reviews-layout { grid-template-columns: 0.95fr 1.05fr; }
}
@media (min-width: 1080px) {
  .hero-shell,
  .showcase-layout {
    grid-template-columns: 0.96fr 1.04fr;
  }
  .story-layout,
  .workflow-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .hero { padding-top: 64px; }
}
