.zs-root {
  --zs-navy: #0b1f3a;
  --zs-blue: #1d4ed8;
  --zs-gray: #475569;
  --zs-teal: #14b8a6;
  --zs-gold: #c8a95b;
  --zs-bg: #f8fafc;
  --zs-card: #ffffff;
  --zs-border: #d9e2ec;
  --zs-soft: #eef4f8;
  --zs-dark-card: #102846;
  --zs-text: #f8fafc;
  --zs-amber: #facc15;
  --zs-coral: #fb7185;
  --zs-purple: #a78bfa;
  --zs-shadow: 0 22px 70px rgba(11, 31, 58, 0.12);
  --zs-shadow-strong: 0 32px 90px rgba(11, 31, 58, 0.22);
  --zs-page-width: 1320px;
  --zs-report-width: 1180px;
  --zs-page-gutter: clamp(18px, 3vw, 34px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--zs-navy);
  background: linear-gradient(180deg, #f8fafc 0%, #edf4f8 48%, #f8fafc 100%);
  padding: 0 0 72px;
}

body.zs-page .entry-content,
body.zs-page .ct-container,
body.zs-page .ct-container-narrow,
body.zs-page .content-area,
body.zs-page article,
body.zs-page main,
body.zs-page .site-content,
body.zs-page .ct-content,
body.zs-page .ct-main-content,
body.zs-page .ct-posts-container {
  max-width: 100% !important;
}

body.zs-page .entry-content,
body.zs-page .content-area,
body.zs-page .ct-content,
body.zs-page .ct-main-content {
  width: 100% !important;
}

body.zs-page .entry-content > .zs-root {
  margin-top: 0 !important;
}

.zs-root .zs-container {
  width: min(var(--zs-page-width), calc(100vw - (var(--zs-page-gutter) * 2)));
  margin: 0 auto;
}

.zs-root .zs-shell {
  width: min(var(--zs-page-width), calc(100vw - (var(--zs-page-gutter) * 2)));
  margin: 0 auto;
}

.zs-root.zs-report-page .zs-container,
.zs-root .zs-report .zs-container {
  width: min(var(--zs-report-width), calc(100vw - (var(--zs-page-gutter) * 2)));
}

.zs-root .zs-section {
  padding: 70px 0 0;
}

.zs-root .zs-section-head,
.zs-root .zs-section-title {
  max-width: 840px;
  margin-bottom: 26px;
}

.zs-root .zs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(110, 231, 183, 0.12);
  border: 1px solid rgba(110, 231, 183, 0.28);
  color: #0f766e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.zs-root .zs-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 900;
  color: var(--zs-navy);
}

.zs-root .zs-section-title h2,
.zs-root .zs-section-title {
  color: var(--zs-navy);
}

.zs-root h2.zs-section-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.zs-root .zs-lead,
.zs-root .zs-section-copy {
  margin: 0;
  color: var(--zs-gray);
  font-size: 17px;
  line-height: 1.65;
}

.zs-root .zs-btn-row,
.zs-root .zs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.zs-root .zs-btn,
.zs-root .zs-btn-primary,
.zs-root .zs-btn-secondary,
.zs-root .zs-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.zs-root .zs-btn:hover,
.zs-root .zs-btn-primary:hover,
.zs-root .zs-btn-secondary:hover,
.zs-root .zs-form button:hover {
  transform: translateY(-2px);
}

.zs-root .zs-btn-primary,
.zs-root .zs-form button {
  background: var(--zs-blue);
  color: #fff;
  box-shadow: 0 15px 32px rgba(29, 78, 216, 0.28);
}

.zs-root .zs-btn-teal {
  background: var(--zs-teal);
  color: #062522;
  box-shadow: 0 15px 32px rgba(20, 184, 166, 0.25);
}

.zs-root .zs-btn-secondary {
  background: #fff;
  color: var(--zs-navy);
  border: 1px solid var(--zs-border);
}

.zs-root .zs-card {
  background: var(--zs-card);
  border: 1px solid var(--zs-border);
  border-radius: 24px;
  box-shadow: var(--zs-shadow);
  padding: 24px;
}

.zs-root .zs-report .zs-card,
.zs-root.zs-report-page .zs-card {
  padding: 28px;
}

.zs-root .zs-card-soft {
  box-shadow: none;
  background: var(--zs-soft);
}

.zs-root .zs-card-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  border: 1px solid var(--zs-border);
  color: var(--zs-text);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  padding: 24px;
}

.zs-root .zs-hero-shell {
  padding: 54px 0 44px;
}

.zs-root .zs-hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(29, 78, 216, 0.22), transparent 27%),
    radial-gradient(circle at 84% 10%, rgba(20, 184, 166, 0.17), transparent 30%),
    linear-gradient(135deg, #0b1f3a 0%, #0a1830 62%, #061225 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--zs-shadow-strong);
  padding: clamp(34px, 5vw, 58px);
}

.zs-root .zs-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 38px;
  align-items: center;
}

.zs-root .zs-hero .zs-eyebrow {
  color: #bff8ec;
  background: rgba(20, 184, 166, 0.13);
  border-color: rgba(20, 184, 166, 0.32);
}

.zs-root .zs-hero .zs-title {
  color: var(--zs-text);
  max-width: 610px;
}

.zs-root .zs-hero .zs-lead {
  color: #d8e4ef;
  max-width: 620px;
}

.zs-root .zs-hero-proof {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #cbd5e1;
  font-size: 13px;
}

.zs-root .zs-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.zs-root .zs-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zs-teal);
}

.zs-root .zs-report-preview {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 24px;
  color: var(--zs-text);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.zs-root .zs-preview-top,
.zs-root .zs-score-grid,
.zs-root .zs-preview-copy {
  position: relative;
}

.zs-root .zs-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.zs-root .zs-preview-label {
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 750;
}

.zs-root .zs-free-pill {
  background: rgba(20, 184, 166, 0.14);
  color: #bff8ec;
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
}

.zs-root .zs-score {
  font-size: clamp(46px, 6vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 950;
  color: var(--zs-text);
  margin-bottom: 8px;
}

.zs-root .zs-score span {
  color: var(--zs-teal);
}

.zs-root .zs-progress {
  height: 10px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  margin: 16px 0 18px;
}

.zs-root .zs-progress span {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--zs-teal), #38bdf8);
  border-radius: 999px;
}

.zs-root .zs-score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.zs-root .zs-mini-kpi {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px;
}

.zs-root .zs-mini-kpi small {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  margin-bottom: 6px;
  font-weight: 750;
}

.zs-root .zs-mini-kpi strong {
  color: var(--zs-text);
  font-size: 21px;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.zs-root .zs-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.zs-root .zs-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.zs-root .zs-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.zs-root .zs-subgrid {
  margin-top: 18px;
  gap: 14px;
}

.zs-root .zs-info-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.zs-root .zs-number {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.12);
  color: var(--zs-blue);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
}

.zs-root .zs-card h3,
.zs-root .zs-product-card h3,
.zs-root .zs-faq-item strong {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.zs-root .zs-card p,
.zs-root .zs-product-card p,
.zs-root .zs-faq-item p {
  margin: 0;
  color: var(--zs-gray);
  font-size: 14px;
  line-height: 1.62;
}

.zs-root .zs-availability {
  margin-top: auto !important;
  padding-top: 12px;
  display: none;
}

.zs-root .zs-dark-band {
  margin-top: 78px;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--zs-navy), #061225);
  color: var(--zs-text);
}

.zs-root .zs-dark-band .zs-section-title,
.zs-root .zs-dark-band .zs-section-title h2,
.zs-root .zs-dark-band h3 {
  color: var(--zs-text);
}

.zs-root .zs-dark-band .zs-section-copy,
.zs-root .zs-dark-band p {
  color: #d8e4ef;
}

.zs-root .zs-dark-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.zs-root .zs-dark-card h3 {
  color: #fff;
}

.zs-root .zs-dark-card p {
  color: #d8e4ef;
}

.zs-root .zs-dark-card .zs-number {
  color: #bff8ec;
  background: rgba(20, 184, 166, 0.14);
}

.zs-root .zs-product-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e1eaf3;
  border-radius: 26px;
  box-shadow: var(--zs-shadow);
  display: flex;
  flex-direction: column;
}

.zs-root .zs-product-card.zs-featured {
  border-color: rgba(200, 169, 91, 0.52);
  background: linear-gradient(180deg, rgba(200, 169, 91, 0.15), #fff 34%);
  box-shadow: 0 28px 80px rgba(200, 169, 91, 0.14);
}

.zs-root .zs-product-card.zs-presence {
  border-color: rgba(20, 184, 166, 0.42);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.13), #fff 36%);
}

.zs-root .zs-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--zs-blue);
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 14px;
}

.zs-root .zs-badge-gold {
  background: rgba(200, 169, 91, 0.16);
  color: #8a6b22;
}

.zs-root .zs-badge-teal {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.zs-root .zs-price {
  margin: 18px 0 18px;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.055em;
  color: #0f172a;
}

.zs-root .zs-price small {
  font-size: 14px;
  font-weight: 750;
  color: #64748b;
  letter-spacing: 0;
}

.zs-root .zs-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 22px;
  display: grid;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.42;
}

.zs-root .zs-list li::before {
  content: "\2713";
  color: var(--zs-teal);
  font-weight: 950;
  margin-right: 8px;
}

.zs-root .zs-upgrade-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  color: var(--zs-gray);
  font-size: 13px;
  line-height: 1.45;
}

.zs-root .zs-receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.zs-root .zs-deliverable-card h3 {
  margin: 0 0 8px;
  color: var(--zs-navy);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 950;
}

.zs-root .zs-deliverable-card p {
  margin: 0;
  color: var(--zs-gray);
  font-size: 14px;
  line-height: 1.62;
}

.zs-root .zs-receive-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.zs-root .zs-receive-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
}

.zs-root .zs-receive-icon {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(29, 78, 216, 0.1);
  color: var(--zs-blue);
  font-weight: 950;
}

.zs-root .zs-report-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  min-height: 430px;
  align-items: center;
}

.zs-root .zs-report-page-card {
  min-height: 360px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dce6f0;
  box-shadow: 0 18px 45px rgba(11, 31, 58, 0.13);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.zs-root .zs-report-page-card:nth-child(2) {
  transform: translateY(-14px);
}

.zs-root .zs-report-page-card:nth-child(3) {
  transform: translateY(14px);
}

.zs-root .zs-page-header {
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--zs-navy), #102846);
  margin-bottom: 14px;
}

.zs-root .zs-page-line {
  height: 8px;
  border-radius: 999px;
  background: #dce6f0;
  margin-bottom: 9px;
}

.zs-root .zs-page-line.wide {
  width: 88%;
}

.zs-root .zs-page-line.mid {
  width: 66%;
}

.zs-root .zs-page-line.short {
  width: 44%;
}

.zs-root .zs-page-line-top {
  margin-top: 16px;
}

.zs-root .zs-page-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}

.zs-root .zs-page-kpi {
  height: 46px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.zs-root .zs-page-map {
  height: 106px;
  border-radius: 13px;
  background: radial-gradient(circle at 36% 42%, rgba(20, 184, 166, 0.8), transparent 18%), radial-gradient(circle at 62% 55%, rgba(29, 78, 216, 0.65), transparent 18%), #eaf2f7;
  border: 1px solid #dce6f0;
  margin-top: 14px;
}

.zs-root .zs-sample-cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.zs-root .zs-step-label {
  color: #0f766e;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.zs-root .zs-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.zs-root .zs-faq-item {
  background: #ffffff;
  border: 1px solid #e1eaf3;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.zs-root .zs-form {
  display: grid;
  gap: 14px;
}

.zs-root .zs-form label {
  display: grid;
  gap: 8px;
  color: #475569;
}

.zs-root .zs-form input,
.zs-root .zs-form textarea,
.zs-root .zs-form select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #dbe4ee;
  background: #ffffff;
  color: #0f172a;
  padding: 12px 14px;
}

.zs-root .zs-check {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.zs-root .zs-kpi-value {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0;
  color: #0f172a;
}

.zs-root .zs-report h1,
.zs-root.zs-report-page h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.zs-root .zs-report h2,
.zs-root.zs-report-page h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.zs-root .zs-report p,
.zs-root .zs-report li,
.zs-root.zs-report-page p,
.zs-root.zs-report-page li {
  font-size: 15px;
  line-height: 1.65;
}

.zs-root .zs-report-section {
  margin-top: 18px;
}

.zs-root .zs-map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
}

.zs-root .zs-map-placeholder {
  display: grid;
  place-items: center;
  color: #64748b;
  background: repeating-linear-gradient(-45deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.02) 12px, rgba(15, 23, 42, 0.04) 12px, rgba(15, 23, 42, 0.04) 24px);
}

.zs-root .zs-preview-blur {
  border-radius: 18px;
  padding: 22px;
  margin: 16px 0;
  border: 1px dashed #dbe4ee;
  background: #f8fafc;
  filter: blur(3px);
  user-select: none;
}

.zs-root .zs-disclaimer {
  color: #92400e;
  font-size: 0.95rem;
}

.zs-root .zs-no-print {
  display: inline-flex;
}

.zs-root .zs-section-bottom {
  padding-bottom: 80px;
}

.zs-root.zs-report-page {
  padding-top: 24px;
  padding-bottom: 40px;
}

@media (max-width: 980px) {
  .zs-root .zs-hero-grid,
  .zs-root .zs-receive-grid,
  .zs-root .zs-grid-2,
  .zs-root .zs-grid-3,
  .zs-root .zs-grid-4,
  .zs-root .zs-faq-grid {
    grid-template-columns: 1fr;
  }

  .zs-root .zs-hero-grid {
    gap: 28px;
  }

  .zs-root .zs-report-preview {
    max-width: 620px;
  }

  .zs-root .zs-report-pages {
    grid-template-columns: 1fr;
  }

  .zs-root .zs-report-page-card:nth-child(2),
  .zs-root .zs-report-page-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .zs-root {
    padding-bottom: 42px;
  }

  .zs-root .zs-hero-shell {
    padding-top: 28px;
  }

  .zs-root .zs-hero {
    border-radius: 24px;
    padding: 26px;
  }

  .zs-root .zs-section {
    padding-top: 52px;
  }

  .zs-root .zs-score-grid,
  .zs-root .zs-grid-2,
  .zs-root .zs-grid-3,
  .zs-root .zs-grid-4,
  .zs-root .zs-faq-grid {
    grid-template-columns: 1fr;
  }

  .zs-root .zs-product-card {
    min-height: auto;
  }
}
