/* ===================================================================
   we-verifi — Join page styles. Extends we-verifi-brand.css and
   site.css (load both first) — reuses --graphite, --cloud, --hairline,
   --muted, --indigo, --teal, --magenta, --foil-gradient, --radius,
   --font-display/body/mono rather than redefining them.
   =================================================================== */

/* ---------- intro ---------- */

.join-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 12px;
}

.join-hero .section-label {
  padding: 0;
  margin-bottom: 18px;
}

.join-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--graphite);
  margin: 0 0 16px;
}

.join-hero .lede {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}

/* ---------- three main blocks ---------- */

.join-blocks {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 32px 72px;
  display: grid;
  gap: 24px;
}

.join-block {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px 34px;
}

.join-block--trial   { border-top: 4px solid var(--indigo); }
.join-block--bundles { border-top: 4px solid var(--teal); }
.join-block--enterprise { border-top: 4px solid var(--magenta); background: var(--cloud); }

.join-block__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.join-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--graphite);
  margin: 0 0 10px;
}

.join-block__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--graphite);
  margin: 0 0 18px;
}

.join-block__price span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}

.join-block__intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 56ch;
}

.join-block__features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
  max-width: 46ch;
}

.join-block__features li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--graphite);
  padding-left: 22px;
  position: relative;
}

.join-block__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--indigo);
}

.join-block--enterprise .join-block__features li::before { background: var(--magenta); }

.join-block__cta { width: fit-content; }

.join-block__footnote {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 22px 0 0;
  max-width: 60ch;
}

/* ---------- bundle sub-grid ---------- */

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bundle-card {
  position: relative;
  background: var(--cloud);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bundle-card--featured {
  background: #fff;
  border: 1.5px solid var(--teal);
  box-shadow: 0 10px 30px rgba(23, 195, 178, 0.12);
}

.bundle-card__badge {
  position: absolute;
  top: -11px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  padding: 4px 10px;
  border-radius: 999px;
}

.bundle-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--graphite);
  margin: 4px 0 2px;
}

.bundle-card__credits {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--graphite);
  margin: 0;
}

.bundle-card__credits span {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
}

.bundle-card__price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--indigo);
  margin: 0 0 6px;
}

.bundle-card__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 14px;
  flex-grow: 1;
}

.bundle-card .btn { width: fit-content; font-size: 0.85rem; }

/* ---------- responsive ---------- */

@media (max-width: 800px) {
  .bundle-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .join-hero { padding: 48px 20px 8px; }
  .join-blocks { padding: 16px 20px 56px; }
  .join-block { padding: 28px 22px; }
}