/* Retail product page — additions only. Nav, hero, buttons, .container, .section-title,
   .cta and the footer all come from theme.css + dlmm.css, so this page stays visually
   identical to lightpaper/ and compare/ where they overlap. */

.hero h1 .accent {
  color: #1B9E3E;
}

/* ── who it's for ───────────────────────────────────────────────────── */

.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.aud-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent);
}

.aud-tag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1B9E3E;
  margin-bottom: 10px;
}

.aud-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
}

.tick {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.tick li {
  position: relative;
  padding-left: 26px;
  color: #999;
  font-size: 15px;
  line-height: 1.55;
}

.tick li b {
  color: #fff;
  font-weight: 500;
}

.tick li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #1B9E3E;
  border-bottom: 2px solid #1B9E3E;
  transform: rotate(-45deg);
}

.aud-link {
  margin-top: auto;
  color: #1B9E3E;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}

.aud-link:hover {
  text-decoration: underline;
}

/* ── how it works ───────────────────────────────────────────────────── */

.explain-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.explain-art {
  width: 100%;
  height: auto;
  display: block;
}

.art-label {
  fill: #555;
  font-size: 11px;
  font-family: "Ubuntu", sans-serif;
}

.explain-copy h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 700;
}

.explain-copy p {
  margin: 0 0 14px;
  color: #999;
  font-size: 16px;
  line-height: 1.6;
}

.explain-copy p:last-child {
  margin-bottom: 0;
}

.explain-copy b {
  color: #fff;
  font-weight: 500;
}

/* ── shapes ─────────────────────────────────────────────────────────── */

.shape-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shape-card {
  padding: 22px;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  transition: border-color 160ms ease;
}

.shape-card:hover {
  border-color: #2f2f2f;
}

.shape-art {
  display: block;
  width: 100%;
  height: 84px;
  margin-bottom: 18px;
}

.shape-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
}

.shape-card p {
  margin: 0;
  color: #999;
  font-size: 15px;
  line-height: 1.55;
}

/* ── steps ──────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 22px;
  border-top: 2px solid #1B9E3E;
  background: linear-gradient(180deg, rgba(27, 158, 62, 0.05), transparent 70%);
}

.step-n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #1B9E3E;
  color: #1B9E3E;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: #999;
  font-size: 15px;
  line-height: 1.55;
}

/* ── faq ────────────────────────────────────────────────────────────── */

.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #1a1a1a;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 140ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  color: #1B9E3E;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: #1B9E3E;
}

.faq-item p {
  margin: 0 0 20px;
  padding-right: 36px;
  color: #999;
  font-size: 15.5px;
  line-height: 1.62;
}

.hero-note.builders {
  margin-top: 22px;
}

/* ── responsive ─────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  .audience,
  .shape-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .explain-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
