/* ══════════════════════════════════════════════════════════════════════════
   VendorStax Landing Page Styles
   Load AFTER styles.css. Reusable for Collector, Card Vendor, Shop, or other
   focused acquisition pages. Uses the global CSS variables from styles.css.
══════════════════════════════════════════════════════════════════════════ */

/* ── LANDING HERO ── */
.lp-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, #1a3a6e 100%);
  padding: 142px 24px 92px;
  position: relative;
  overflow: hidden;
}
/* Pages with no fixed nav (e.g. standalone landing pages) don't need the
   extra top padding that exists specifically to clear the nav's height. */
.no-nav .lp-hero { padding-top: 74px; }
.lp-hero::before {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,191,164,.16), transparent 70%);
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,191,164,.08), transparent 70%);
  pointer-events: none;
}
.lp-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 66px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(43,191,164,.14);
  border: 1px solid rgba(43,191,164,.28);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}
.lp-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.lp-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.lp-title span { color: var(--teal); }
.lp-subtitle {
  max-width: 570px;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 32px;
}
.lp-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-microcopy {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,.48);
}

/* ── DASHBOARD / PRODUCT PREVIEW ── */
.lp-preview {
  background: rgba(8,20,38,.82);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 2px 2px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-preview-dots { display: flex; gap: 6px; }
.lp-preview-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.lp-preview-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); }
.lp-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.lp-preview-card {
  min-width: 0;
  padding: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
}
.lp-preview-card.wide { grid-column: 1 / -1; }
.lp-preview-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: 7px;
}
.lp-preview-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.lp-preview-value.teal { color: var(--teal); }
.lp-preview-note { font-size: 11.5px; color: rgba(255,255,255,.45); margin-top: 5px; }
.lp-preview-row {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
}
.lp-preview-row:first-of-type { margin-top: 10px; }
.lp-preview-row strong { color: var(--white); font-weight: 600; }
.lp-status {
  justify-self: start;
  padding: 3px 7px;
  background: rgba(43,191,164,.14);
  color: var(--teal);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

/* ── TRUST / POSITIONING STRIP ── */
.lp-trust {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lp-trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 21px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px 44px;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 600;
}
.lp-trust-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── GENERIC LANDING SECTIONS ── */
.lp-section { padding: 92px 24px; }
.lp-section.alt { background: var(--gray-50); }
.lp-section.dark { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.lp-container { max-width: 1160px; margin: 0 auto; }
.lp-section-head { max-width: 700px; margin-bottom: 52px; }
.lp-section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.lp-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dark .lp-label { color: var(--teal); }
.lp-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.17;
  color: var(--navy);
  letter-spacing: -.015em;
  margin-bottom: 16px;
}
.lp-heading span { color: var(--teal-dark); }
.dark .lp-heading { color: var(--white); }
.dark .lp-heading span { color: var(--teal); }
.lp-lead { font-size: 17px; line-height: 1.8; color: var(--gray-500); }
.dark .lp-lead { color: rgba(255,255,255,.66); }

/* ── PAIN / BENEFIT CARDS ── */
.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.lp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(43,191,164,.32); }
.lp-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
}
.lp-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.lp-card-copy { font-size: 14px; line-height: 1.7; color: var(--gray-500); }

/* ── SPLIT CONTENT ── */
.lp-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.lp-split.reverse { grid-template-columns: 1.08fr .92fr; }
.lp-split.reverse > :first-child { order: 2; }
.lp-split.reverse > :last-child { order: 1; }
.lp-check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.lp-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.55;
}
.lp-check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}
.lp-panel {
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.lp-panel.dark-panel {
  background: var(--navy);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}

/* ── STEPS ── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  counter-reset: lpstep;
}
.lp-step {
  position: relative;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.lp-step::before {
  counter-increment: lpstep;
  content: counter(lpstep, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}
.lp-step-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.lp-step-copy { font-size: 14px; line-height: 1.7; color: var(--gray-500); }

/* ── CALLOUT / CTA ── */
.lp-callout {
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal);
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}
.lp-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}
.lp-accent { color: var(--teal); }

/* ── BENEFITS GRID (creators.html) ── */
.lp-benefits { padding: 92px 24px; background: var(--white); }
.lp-benefits-head { max-width: 700px; margin: 0 auto 52px; text-align: center; }
.lp-benefits-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -.015em;
  margin-bottom: 14px;
}
.lp-benefits-subtitle { font-size: 16px; line-height: 1.75; color: var(--gray-500); }
.lp-benefit-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.lp-benefit {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.lp-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(43,191,164,.32); }
.lp-benefit-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
}
.lp-benefit-icon svg { width: 22px; height: 22px; }
.lp-benefit-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.lp-benefit-copy { font-size: 14px; line-height: 1.7; color: var(--gray-500); }
.lp-final-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: rgba(43,191,164,.14);
  color: var(--teal);
}
.lp-final-icon svg { width: 26px; height: 26px; }

.lp-final { padding: 88px 24px; background: var(--white); }
.lp-final-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 62px 46px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lp-final-card::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,191,164,.17), transparent 70%);
}
.lp-final-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.17;
  margin-bottom: 14px;
}
.lp-final-title span { color: var(--teal); }
.lp-final-copy {
  position: relative;
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.67);
  font-size: 16px;
  line-height: 1.75;
}
.lp-final-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .lp-hero-inner, .lp-split, .lp-split.reverse { grid-template-columns: 1fr; gap: 42px; }
  .lp-split.reverse > :first-child, .lp-split.reverse > :last-child { order: initial; }
  .lp-hero-copy { text-align: center; }
  .lp-subtitle { margin-left: auto; margin-right: auto; }
  .lp-actions { justify-content: center; }
  .lp-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lp-benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lp-steps { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .lp-hero { padding: 118px 20px 72px; }
  .lp-section { padding: 72px 20px; }
  .lp-card-grid { grid-template-columns: 1fr; }
  .lp-benefit-grid { grid-template-columns: 1fr; }
  .lp-preview-grid { grid-template-columns: 1fr; }
  .lp-preview-card.wide { grid-column: auto; }
  .lp-preview-row { grid-template-columns: 1.35fr .8fr; }
  .lp-preview-row > :nth-child(3) { display: none; }
  .lp-panel { padding: 24px 20px; }
  .lp-final { padding: 68px 20px; }
  .lp-final-card { padding: 46px 24px; }
  .lp-trust-inner { gap: 14px 24px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   WHO WE SERVE PAGE (who-we-serve.html)
══════════════════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.wws-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, #1a3a6e 100%);
  padding: 142px 24px 92px;
}
.wws-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 66px;
  align-items: center;
}
.wws-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.wws-accent { color: var(--teal); }
.wws-hero-sub {
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 30px;
}
.wws-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}

/* ── AUDIENCES SECTION ── */
.wws-audiences { padding: 92px 24px; background: var(--white); }
.wws-container { max-width: 1160px; margin: 0 auto; }
.wws-section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -.015em;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.wws-list { display: flex; flex-direction: column; gap: 20px; }

/* ── CARD ── */
.wws-card-link { text-decoration: none; color: inherit; display: block; }
.wws-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.wws-card:hover, .wws-card-link:hover .wws-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43,191,164,.32);
}
.wws-card-side { display: flex; flex-direction: column; gap: 14px; }
.wws-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-dark);
  flex-shrink: 0;
}
.wws-card-icon svg { width: 24px; height: 24px; }
.wws-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
.wws-card-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
}
.wws-card-body { position: relative; }
.wws-card-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.wws-card-copy { font-size: 14.5px; line-height: 1.7; color: var(--gray-500); margin-bottom: 16px; }
.wws-card-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wws-card-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
}
.wws-card-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.wws-card-arrow {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-dark);
}

/* ── BOTTOM CTA ── */
.wws-bottom { padding: 88px 24px; background: var(--white); }
.wws-bottom-card {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 62px 46px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wws-bottom-card::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,191,164,.17), transparent 70%);
}
.wws-bottom-icon {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: rgba(43,191,164,.14);
  color: var(--teal);
}
.wws-bottom-icon svg { width: 26px; height: 26px; }
.wws-bottom-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}
.wws-bottom-copy {
  position: relative;
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.67);
  font-size: 16px;
  line-height: 1.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .wws-hero-inner { grid-template-columns: 1fr; gap: 42px; text-align: center; }
  .wws-hero-copy { text-align: center; }
  .wws-hero-sub { margin-left: auto; margin-right: auto; }
  .wws-card { grid-template-columns: 1fr; gap: 20px; }
  .wws-card-arrow { display: none; }
}
@media (max-width: 680px) {
  .wws-hero { padding: 118px 20px 72px; }
  .wws-audiences, .wws-bottom { padding: 68px 20px; }
  .wws-card { padding: 24px 20px; }
  .wws-bottom-card { padding: 46px 24px; }
}
