/* Software page. Uses the home page's components (home.css: ad-*) and the about
   page's opening (about.css: ab-hero); these are the product-specific pieces. */

/* The product, with its command centre beside it */
.sw-hero-card {
  display: grid;
  gap: 36px;
  align-items: center;
  padding: 32px 20px;
  border: 1px solid var(--ad-line);
  border-radius: var(--ad-r);
  background: #fff;
  background-image: radial-gradient(90% 120% at 0% 0%, rgba(76, 72, 157, .10), transparent 62%);
  box-shadow: var(--ad-shadow);
}
@media (min-width: 768px) { .sw-hero-card { padding: 48px; } }
@media (min-width: 1100px) { .sw-hero-card { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; padding: 56px; } }
.sw-hero-copy p { margin: 16px 0 12px; font-size: 16.5px; line-height: 1.65; color: var(--ad-soft); }

/* Real product screenshots */
.sw-shot, .ad-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(22, 20, 58, .06), 0 24px 54px rgba(22, 20, 58, .14);
}
/* What we build: six cards in the page's tints */
.sw-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .sw-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1100px) { .sw-grid { grid-template-columns: repeat(3, 1fr); } }
.sw-card { display: flex; flex-direction: column; padding: 28px; border-radius: var(--ad-r); }
@media (min-width: 768px) { .sw-card { padding: 36px; } }
.sw-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--ad-brand);
  font-size: 20px;
  box-shadow: 0 1px 2px rgba(22, 20, 58, .06);
}
.sw-card h3 { margin: 22px 0 0; font-size: 22px; line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
.sw-card p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ad-soft); }
.sw-tags { list-style: none; margin: auto 0 0; padding: 20px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.sw-tags li { padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .8); font-size: 13px; font-weight: 500; color: var(--ad-ink); }

/* How we work: heading on one side, the steps on the other */
@media (min-width: 1024px) { .ad-signup.sw-process { grid-template-columns: 1fr 1.2fr; align-items: start; } }
.sw-process .ad-steps { margin-top: 0; }
.sw-process-lead { margin: 16px 0 0; max-width: 420px; font-size: 17px; line-height: 1.6; color: var(--ad-soft); }
@media (max-width: 1023px) { .sw-process .ad-steps { margin-top: 8px; } }
