:root {
  --ink: #092931;
  --text: #17313b;
  --muted: #58677a;
  --line: #dde3ea;
  --canvas: #ffffff;
  --soft: #f6f8fa;
  --deep: #4f5d72;
  --cyan: #1598b8;
  --cyan-dark: #087996;
  --pink: #d51c82;
  --pink-soft: #fdeaf4;
  --aqua: #cceff6;
  --green: #57bf78;
  --yellow: #fff0bd;
  --orange: #ff7248;
  --lavender: #dfe5ff;
  --shadow: 0 22px 48px rgba(9, 41, 49, 0.16);
  --sans: Inter, Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", Consolas, monospace;
}

/* Unified redesign for product, pricing and API pages. */
body.pr-subpage .site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  width: min(1280px, calc(100% - 80px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(219, 228, 238, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(31, 47, 75, 0.08);
  backdrop-filter: blur(18px);
}

body.pr-subpage .brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  color: var(--pr-ink);
  text-decoration: none;
}

body.pr-subpage .brand::before {
  content: "";
  width: 15px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 28% 100%, 0 100%);
  background: linear-gradient(135deg, #11182a 0%, var(--pr-blue) 58%, var(--pr-pink) 100%);
}

body.pr-subpage .brand-logo {
  color: var(--pr-ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: 1.04rem;
  font-weight: 860;
  letter-spacing: -0.03em;
}

body.pr-subpage .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

body.pr-subpage .nav-links a,
body.pr-subpage .header-button {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #384055;
  background: transparent;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

body.pr-subpage .nav-links a::after,
body.pr-subpage .header-button::after {
  display: none;
}

body.pr-subpage .nav-links a:hover {
  color: var(--pr-blue-dark);
  background: #edf5ff;
}

body.pr-subpage .nav-links a.is-active {
  color: var(--pr-blue-dark);
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px rgba(37, 133, 247, 0.16);
}

body.pr-subpage .header-button {
  justify-self: end;
  color: #fff;
  background: var(--pr-blue);
  box-shadow: 0 12px 28px rgba(37, 133, 247, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

body.pr-subpage .header-button:hover {
  transform: translateY(-2px);
}

body.pr-subpage .product-page,
body.pr-subpage .pricing-page,
body.pr-subpage .api-page {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  padding: 58px 0 82px;
}

body.pr-subpage .product-page > section,
body.pr-subpage .pricing-page > section,
body.pr-subpage .api-page > section {
  margin-right: 0;
  margin-left: 0;
}

body.pr-subpage .product-story-hero,
body.pr-subpage .api-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1fr);
  gap: 64px;
  align-items: center;
  min-height: 650px;
  padding: 64px;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 20%, rgba(37, 133, 247, 0.14), transparent 28%),
    radial-gradient(circle at 12% 0%, rgba(227, 38, 138, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 80px rgba(31, 47, 75, 0.09);
}

body.pr-subpage .product-story-hero::before,
body.pr-subpage .api-hero::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(37, 133, 247, 0.16);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 133, 247, 0.1), transparent 56%);
}

body.pr-subpage .eyebrow {
  margin: 0 0 22px;
  color: var(--pr-blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.pr-subpage .product-hero-copy,
body.pr-subpage .api-hero-copy {
  position: relative;
  z-index: 1;
}

body.pr-subpage .product-hero-copy h1,
body.pr-subpage .pricing-hero h1,
body.pr-subpage .api-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--pr-ink);
  font-size: clamp(3.5rem, 5.2vw, 5.9rem);
  font-weight: 640;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

body.pr-subpage .api-hero-copy h1 span {
  display: inline;
  color: transparent;
  background: linear-gradient(100deg, var(--pr-blue), var(--pr-pink));
  -webkit-background-clip: text;
  background-clip: text;
}

body.pr-subpage .product-hero-copy > p:not(.eyebrow),
body.pr-subpage .pricing-hero > p,
body.pr-subpage .api-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: #5e687b;
  font-size: 1.14rem;
  font-weight: 560;
  line-height: 1.58;
}

body.pr-subpage .product-hero-actions,
body.pr-subpage .api-actions,
body.pr-subpage .product-cta-actions,
body.pr-subpage .pricing-cta-section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

body.pr-subpage .primary-action,
body.pr-subpage .secondary-action,
body.pr-subpage .plain-link,
body.pr-subpage .pricing-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 860;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

body.pr-subpage .primary-action,
body.pr-subpage .pricing-card.is-featured .pricing-button {
  color: #fff;
  background: var(--pr-blue);
  box-shadow: 0 16px 32px rgba(37, 133, 247, 0.23);
}

body.pr-subpage .secondary-action,
body.pr-subpage .plain-link,
body.pr-subpage .pricing-button {
  color: var(--pr-ink);
  border: 1px solid var(--pr-line);
  background: rgba(255, 255, 255, 0.72);
}

body.pr-subpage .primary-action:hover,
body.pr-subpage .secondary-action:hover,
body.pr-subpage .plain-link:hover,
body.pr-subpage .pricing-button:hover {
  transform: translateY(-2px);
}

body.pr-subpage .product-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin: 34px 0 0;
}

body.pr-subpage .product-hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(219, 228, 238, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

body.pr-subpage .product-hero-metrics dt {
  color: var(--pr-blue-dark);
  font-size: 1.28rem;
  font-weight: 860;
}

body.pr-subpage .product-hero-metrics dd {
  margin: 3px 0 0;
  color: #667286;
  font-size: 0.84rem;
  font-weight: 740;
}

body.pr-subpage .product-report-preview {
  position: relative;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}

body.pr-subpage .product-report-window,
body.pr-subpage .api-code-window,
body.pr-subpage .api-action-board {
  overflow: hidden;
  border: 1px solid rgba(183, 199, 218, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 86px rgba(35, 52, 82, 0.18);
}

body.pr-subpage .product-report-window {
  transform: rotate(-1.3deg);
}

body.pr-subpage .product-report-bar,
body.pr-subpage .window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  color: #536074;
  border-bottom: 1px solid var(--pr-line);
  background: #edf4fb;
}

body.pr-subpage .product-report-bar span,
body.pr-subpage .window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

body.pr-subpage .product-report-bar span:nth-child(1),
body.pr-subpage .window-bar span:nth-child(1) {
  background: #ff654e;
}

body.pr-subpage .product-report-bar span:nth-child(2),
body.pr-subpage .window-bar span:nth-child(2) {
  background: #ffc23c;
}

body.pr-subpage .product-report-bar span:nth-child(3),
body.pr-subpage .window-bar span:nth-child(3) {
  background: #45b96a;
}

body.pr-subpage .product-report-bar strong,
body.pr-subpage .window-bar strong {
  margin-left: 6px;
  font-size: 0.82rem;
  font-weight: 860;
}

body.pr-subpage .product-report-body {
  padding: 28px;
}

body.pr-subpage .product-report-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

body.pr-subpage .product-report-top span {
  color: var(--pr-pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.pr-subpage .product-report-top button {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  border: 0;
  border-radius: 10px;
  background: var(--pr-navy);
  font-weight: 840;
}

body.pr-subpage .product-report-body h2 {
  margin: 18px 0 0;
  color: var(--pr-ink);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

body.pr-subpage .product-report-chart {
  height: 250px;
  display: flex;
  gap: 16px;
  align-items: end;
  margin-top: 28px;
  padding: 24px 20px 16px;
  border: 1px solid var(--pr-line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(36, 40, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 40, 58, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

body.pr-subpage .product-report-chart i {
  flex: 1;
  min-width: 22px;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, var(--pr-blue), #77d5e5);
}

body.pr-subpage .product-report-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

body.pr-subpage .product-report-cards div {
  padding: 14px;
  border: 1px solid var(--pr-line);
  border-radius: 14px;
  background: #fff;
}

body.pr-subpage .product-report-cards span {
  display: block;
  color: #748096;
  font-size: 0.72rem;
  font-weight: 820;
}

body.pr-subpage .product-report-cards strong {
  display: block;
  margin-top: 6px;
  color: var(--pr-ink);
  font-size: 1.35rem;
}

body.pr-subpage .product-data-section,
body.pr-subpage .product-workflow-section,
body.pr-subpage .product-features-section,
body.pr-subpage .product-value-section,
body.pr-subpage .pricing-cards-section,
body.pr-subpage .pricing-assurance,
body.pr-subpage .pricing-compare-section,
body.pr-subpage .pricing-report-section,
body.pr-subpage .pricing-faq-section,
body.pr-subpage .api-data-section,
body.pr-subpage .api-workflow-section,
body.pr-subpage .api-integration-section,
body.pr-subpage .product-cta-section,
body.pr-subpage .pricing-cta-section {
  margin-top: 76px;
}

body.pr-subpage .product-section-heading,
body.pr-subpage .pricing-section-heading,
body.pr-subpage .api-section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

body.pr-subpage .product-section-heading h2,
body.pr-subpage .pricing-section-heading h2,
body.pr-subpage .api-section-heading h2,
body.pr-subpage .product-cta-section h2,
body.pr-subpage .pricing-cta-section h2 {
  margin: 0;
  color: var(--pr-ink);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 640;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

body.pr-subpage .product-section-heading p:not(.eyebrow),
body.pr-subpage .pricing-section-heading p:not(.eyebrow),
body.pr-subpage .api-section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: #667286;
  font-size: 1.08rem;
  font-weight: 560;
  line-height: 1.58;
}

body.pr-subpage .product-data-grid,
body.pr-subpage .product-features-grid,
body.pr-subpage .pricing-report-grid,
body.pr-subpage .api-endpoint-grid,
body.pr-subpage .api-integration-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.pr-subpage .product-data-grid article,
body.pr-subpage .product-features-grid article,
body.pr-subpage .pricing-report-grid article,
body.pr-subpage .api-endpoint-grid article,
body.pr-subpage .api-integration-section article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--pr-line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 80% 12%, rgba(37, 133, 247, 0.12), transparent 34%);
  box-shadow: 0 22px 62px rgba(31, 47, 75, 0.07);
}

body.pr-subpage .product-data-grid span,
body.pr-subpage .product-features-grid span,
body.pr-subpage .pricing-report-grid span,
body.pr-subpage .api-endpoint-grid span,
body.pr-subpage .api-integration-section span {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  color: var(--pr-blue-dark);
  border: 1px solid rgba(37, 133, 247, 0.2);
  border-radius: 999px;
  background: #edf5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.pr-subpage .product-data-grid h3,
body.pr-subpage .product-features-grid h3,
body.pr-subpage .pricing-report-grid h3,
body.pr-subpage .api-endpoint-grid h3,
body.pr-subpage .api-integration-section h3 {
  margin: 28px 0 12px;
  color: var(--pr-ink);
  font-size: 1.55rem;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

body.pr-subpage .product-data-grid p,
body.pr-subpage .product-features-grid p,
body.pr-subpage .pricing-report-grid p,
body.pr-subpage .api-endpoint-grid p,
body.pr-subpage .api-integration-section p {
  margin: 0;
  color: #667286;
  font-weight: 620;
  line-height: 1.48;
}

body.pr-subpage .product-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--pr-line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(31, 47, 75, 0.07);
}

body.pr-subpage .product-workflow article {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--pr-line);
}

body.pr-subpage .product-workflow article:last-child {
  border-right: 0;
}

body.pr-subpage .product-workflow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 14px;
  background: var(--pr-navy);
  font-weight: 900;
}

body.pr-subpage .product-workflow h3 {
  margin: 32px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

body.pr-subpage .product-workflow p {
  margin: 0;
  color: #667286;
  font-weight: 620;
  line-height: 1.5;
}

body.pr-subpage .product-value-table,
body.pr-subpage .pricing-compare-wrap,
body.pr-subpage .pricing-faq-list {
  overflow: hidden;
  border: 1px solid var(--pr-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(31, 47, 75, 0.07);
}

body.pr-subpage .product-value-head,
body.pr-subpage .product-value-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid var(--pr-line);
}

body.pr-subpage .product-value-row:last-child {
  border-bottom: 0;
}

body.pr-subpage .product-value-head {
  color: #748096;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: #f5f8fb;
}

body.pr-subpage .product-value-row strong {
  color: var(--pr-ink);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

body.pr-subpage .product-value-row p {
  margin: 0;
  color: #667286;
  font-weight: 620;
}

body.pr-subpage .product-cta-section,
body.pr-subpage .pricing-cta-section {
  padding: 56px;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(37, 133, 247, 0.34), transparent 30%),
    radial-gradient(circle at 12% 0%, rgba(227, 38, 138, 0.24), transparent 30%),
    var(--pr-navy);
}

body.pr-subpage .product-cta-section h2,
body.pr-subpage .pricing-cta-section h2 {
  max-width: 920px;
  color: #fff;
}

body.pr-subpage .product-cta-section .eyebrow,
body.pr-subpage .pricing-cta-section .eyebrow {
  color: #79c8ff;
}

body.pr-subpage .pricing-hero {
  position: relative;
  min-height: 430px;
  padding: 76px 64px;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 12%, rgba(53, 168, 101, 0.14), transparent 26%),
    radial-gradient(circle at 12% 4%, rgba(37, 133, 247, 0.11), transparent 26%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 80px rgba(31, 47, 75, 0.09);
}

body.pr-subpage .pricing-hero::after {
  content: "Пилот 1 990 ₽\\AКоманда 5 000 ₽\\AАгентство 19 900 ₽";
  white-space: pre;
  position: absolute;
  right: 64px;
  bottom: 58px;
  width: min(370px, 34%);
  padding: 24px;
  color: var(--pr-ink);
  border: 1px solid var(--pr-line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.88));
  box-shadow: 0 26px 60px rgba(31, 47, 75, 0.12);
  font-size: 1.2rem;
  font-weight: 860;
  line-height: 1.9;
}

body.pr-subpage .pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body.pr-subpage .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 550px;
  padding: 28px;
  border: 1px solid var(--pr-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 62px rgba(31, 47, 75, 0.07);
}

body.pr-subpage .pricing-card.is-featured {
  color: #fff;
  border-color: rgba(17, 24, 42, 0.94);
  background:
    radial-gradient(circle at 88% 0%, rgba(37, 133, 247, 0.36), transparent 34%),
    var(--pr-navy);
  transform: translateY(-10px);
}

body.pr-subpage .pricing-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--pr-pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.pr-subpage .pricing-card-head h3 {
  margin: 0;
  color: inherit;
  font-size: 1.7rem;
  font-weight: 780;
  letter-spacing: -0.045em;
}

body.pr-subpage .pricing-card-head p {
  min-height: 72px;
  margin: 18px 0 0;
  color: #667286;
  font-weight: 620;
  line-height: 1.48;
}

body.pr-subpage .pricing-card.is-featured .pricing-card-head p,
body.pr-subpage .pricing-card.is-featured .pricing-price span,
body.pr-subpage .pricing-card.is-featured .pricing-includes span {
  color: rgba(255, 255, 255, 0.66);
}

body.pr-subpage .pricing-price {
  margin-top: 28px;
}

body.pr-subpage .pricing-price strong {
  display: block;
  color: inherit;
  font-size: clamp(2.7rem, 4.2vw, 4.4rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

body.pr-subpage .pricing-price span {
  display: block;
  margin-top: 8px;
  color: #667286;
  font-size: 0.86rem;
  font-weight: 820;
}

body.pr-subpage .pricing-button {
  width: 100%;
  margin-top: 28px;
}

body.pr-subpage .pricing-includes {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--pr-line);
}

body.pr-subpage .pricing-card.is-featured .pricing-includes {
  border-top-color: rgba(255, 255, 255, 0.14);
}

body.pr-subpage .pricing-includes span {
  color: #748096;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.pr-subpage .pricing-includes ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

body.pr-subpage .pricing-includes li {
  position: relative;
  padding-left: 20px;
  color: inherit;
  font-weight: 720;
  line-height: 1.35;
}

body.pr-subpage .pricing-includes li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pr-blue);
}

body.pr-subpage .pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: #667286;
  text-align: center;
  font-weight: 620;
}

body.pr-subpage .pricing-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

body.pr-subpage .pricing-assurance article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--pr-line);
  border-radius: 24px;
  background: #fff;
}

body.pr-subpage .pricing-assurance span {
  color: var(--pr-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

body.pr-subpage .pricing-assurance strong {
  display: block;
  margin-top: 28px;
  color: var(--pr-ink);
  font-size: 1.25rem;
}

body.pr-subpage .pricing-assurance p {
  margin: 10px 0 0;
  color: #667286;
  font-weight: 620;
}

body.pr-subpage .pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
}

body.pr-subpage .pricing-compare-table th,
body.pr-subpage .pricing-compare-table td {
  padding: 20px;
  border-bottom: 1px solid var(--pr-line);
  text-align: left;
}

body.pr-subpage .pricing-compare-table thead th {
  color: #748096;
  background: #f5f8fb;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.pr-subpage .pricing-compare-table tbody th {
  color: var(--pr-ink);
  font-weight: 760;
}

body.pr-subpage .pricing-compare-table td {
  color: #667286;
  font-weight: 680;
}

body.pr-subpage .pricing-faq-list details {
  padding: 24px 28px;
  border-bottom: 1px solid var(--pr-line);
}

body.pr-subpage .pricing-faq-list details:last-child {
  border-bottom: 0;
}

body.pr-subpage .pricing-faq-list summary {
  cursor: pointer;
  color: var(--pr-ink);
  font-size: 1.12rem;
  font-weight: 820;
}

body.pr-subpage .pricing-faq-list p {
  margin: 12px 0 0;
  color: #667286;
  font-weight: 620;
}

body.pr-subpage .api-subnav {
  position: sticky;
  top: 96px;
  z-index: 18;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px auto 30px;
  padding: 8px;
  border: 1px solid rgba(219, 228, 238, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

body.pr-subpage .api-subnav a {
  min-height: 40px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: #536074;
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

body.pr-subpage .api-subnav a:hover {
  color: var(--pr-blue-dark);
  background: #edf5ff;
}

body.pr-subpage .api-subnav span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pr-blue);
}

body.pr-subpage .api-code-window {
  position: relative;
  z-index: 1;
  background: #0f3740;
  transform: rotate(-1deg);
}

body.pr-subpage .api-code-window pre {
  margin: 0;
  padding: 28px;
  overflow: auto;
  color: #d9fff4;
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.7;
}

body.pr-subpage .api-code-window .comment {
  color: #8cb2b8;
}

body.pr-subpage .api-code-window .method,
body.pr-subpage .api-code-window .key {
  color: #79d0ff;
}

body.pr-subpage .api-code-window .string {
  color: #ffd978;
}

body.pr-subpage .api-workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: center;
  padding: 58px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(31, 47, 75, 0.07);
}

body.pr-subpage .api-workflow-copy h2 {
  margin: 0;
  color: var(--pr-ink);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 640;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

body.pr-subpage .api-workflow-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #667286;
  font-size: 1.08rem;
  font-weight: 560;
  line-height: 1.58;
}

body.pr-subpage .api-board-body {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 16px;
  padding: 22px;
  background: #f7f1e6;
}

body.pr-subpage .api-board-body aside,
body.pr-subpage .api-board-body > div {
  display: grid;
  gap: 10px;
}

body.pr-subpage .api-board-body aside b {
  margin-bottom: 6px;
  color: var(--pr-ink);
}

body.pr-subpage .api-board-body aside span,
body.pr-subpage .api-task {
  padding: 15px 16px;
  border-radius: 10px;
  background: #fffaf2;
  color: #667286;
  font-weight: 760;
}

body.pr-subpage .api-board-body aside .active,
body.pr-subpage .api-task {
  color: #fff;
  background: var(--pr-navy);
}

body.pr-subpage .api-task {
  min-height: 62px;
  display: flex;
  align-items: center;
  border-left: 6px solid var(--pr-blue);
}

body.pr-subpage .api-task.yellow {
  border-left-color: #ffd978;
}

body.pr-subpage .api-task.green {
  border-left-color: var(--pr-green);
}

body.pr-subpage .site-footer {
  width: min(1280px, calc(100% - 80px));
  min-height: 440px;
  margin: 0 auto 24px;
  padding: 58px 64px 34px;
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 133, 247, 0.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(53, 168, 101, 0.13), transparent 24%),
    var(--pr-navy);
}

body.pr-subpage .site-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: 80px;
  width: 100%;
  max-width: none;
  margin: 0;
}

body.pr-subpage .site-footer .footer-contact {
  margin: 0;
}

body.pr-subpage .site-footer .footer-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 860;
  text-decoration: none;
}

body.pr-subpage .site-footer .footer-brand-mark {
  width: 15px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 28% 100%, 0 100%);
  background: linear-gradient(135deg, #fff 0%, var(--pr-blue) 58%, var(--pr-pink) 100%);
}

body.pr-subpage .site-footer .footer-contact h2 {
  max-width: 420px;
  margin: 46px 0 0;
  color: #fff;
  font-size: clamp(2.25rem, 3.5vw, 4rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

body.pr-subpage .site-footer .footer-contact p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 560;
  line-height: 1.55;
}

body.pr-subpage .site-footer .footer-email {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 820;
  text-decoration: none;
}

body.pr-subpage .site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding-top: 10px;
}

body.pr-subpage .site-footer .footer-links div {
  display: grid;
  align-content: start;
  gap: 14px;
}

body.pr-subpage .site-footer .footer-links h3 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.pr-subpage .site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 620;
  text-decoration: none;
}

body.pr-subpage .site-footer a:hover {
  color: #fff;
}

body.pr-subpage .site-footer .footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 720;
}

@media (max-width: 1100px) {
  body.pr-subpage .site-header,
  body.pr-subpage .product-page,
  body.pr-subpage .pricing-page,
  body.pr-subpage .api-page,
  body.pr-subpage .site-footer {
    width: min(100% - 38px, 1280px);
  }

  body.pr-subpage .product-story-hero,
  body.pr-subpage .api-hero,
  body.pr-subpage .api-workflow-section {
    grid-template-columns: 1fr;
  }

  body.pr-subpage .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.pr-subpage .pricing-hero::after {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(420px, 100%);
    margin-top: 34px;
  }

  body.pr-subpage .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  body.pr-subpage .site-header {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  body.pr-subpage .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  body.pr-subpage .header-button {
    justify-self: start;
  }

  body.pr-subpage .product-story-hero,
  body.pr-subpage .api-hero,
  body.pr-subpage .pricing-hero,
  body.pr-subpage .api-workflow-section,
  body.pr-subpage .product-cta-section,
  body.pr-subpage .pricing-cta-section {
    padding: 30px;
    border-radius: 26px;
  }

  body.pr-subpage .product-hero-copy h1,
  body.pr-subpage .pricing-hero h1,
  body.pr-subpage .api-hero-copy h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  body.pr-subpage .product-hero-metrics,
  body.pr-subpage .product-data-grid,
  body.pr-subpage .product-features-grid,
  body.pr-subpage .pricing-report-grid,
  body.pr-subpage .api-endpoint-grid,
  body.pr-subpage .api-integration-section,
  body.pr-subpage .pricing-assurance,
  body.pr-subpage .pricing-cards,
  body.pr-subpage .product-workflow,
  body.pr-subpage .product-report-cards {
    grid-template-columns: 1fr;
  }

  body.pr-subpage .product-workflow article {
    border-right: 0;
    border-bottom: 1px solid var(--pr-line);
  }

  body.pr-subpage .product-workflow article:last-child {
    border-bottom: 0;
  }

  body.pr-subpage .product-value-head,
  body.pr-subpage .product-value-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.pr-subpage .pricing-compare-wrap {
    overflow-x: auto;
  }

  body.pr-subpage .api-board-body {
    grid-template-columns: 1fr;
  }

  body.pr-subpage .site-footer {
    padding: 28px;
  }

  body.pr-subpage .site-footer .footer-links {
    grid-template-columns: 1fr;
  }

  body.pr-subpage .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1320px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  font-size: 1.65rem;
  font-weight: 950;
  letter-spacing: 0;
  background: linear-gradient(90deg, #f26a48, #d51c82, #1598b8, #57bf78);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  font-size: 1.02rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-button,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  color: #fff;
  background: linear-gradient(180deg, #20a9c7, #0d86a4);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 7px 15px rgba(9, 41, 49, 0.24);
  cursor: pointer;
  font-weight: 850;
}

.plain-link {
  color: var(--cyan-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 56px;
  align-items: center;
  width: min(1320px, calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto;
  padding: 38px 0 52px;
}

.product-hero {
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: -80px 0 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(213, 28, 130, 0.16), transparent 34%),
    radial-gradient(circle at 63% 18%, rgba(255, 240, 189, 0.95), transparent 36%),
    linear-gradient(180deg, #fff 0%, #fff 70%, #f9fbfd 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: 3.35rem;
  line-height: 1.06;
  letter-spacing: 0;
}

#hero-title {
  min-height: 176px;
}

.hero h1 span,
.center-heading h2 span {
  display: block;
  color: var(--pink);
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 560;
}

#heroDescription {
  min-height: 118px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.hero-slide-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.hero-slide-controls button {
  width: 28px;
  height: 8px;
  padding: 0;
  background: rgba(9, 41, 49, 0.18);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-slide-controls button.is-active {
  width: 46px;
  background: var(--pink);
}

.product-window {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(9, 41, 49, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-window {
  rotate: 1deg;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  background: #f0f3f6;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-bar span:nth-child(1) {
  background: #ef564c;
}

.window-bar span:nth-child(2) {
  background: #f5bb3b;
}

.window-bar span:nth-child(3) {
  background: #42b95a;
}

.window-bar strong {
  margin-left: 8px;
  color: rgba(9, 41, 49, 0.64);
  font-size: 0.82rem;
}

.report-screen {
  padding: 22px;
  background: #fbfaf7;
}

.screen-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.screen-label {
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-top h2 {
  margin: 4px 0 0;
  font-size: 1.75rem;
}

.screen-top button {
  min-height: 34px;
  padding: 8px 12px;
  color: #fff;
  background: var(--cyan);
  border: 0;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
}

.chart-card,
.recommendation-card,
.report-row {
  margin-top: 18px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.chart-title,
.report-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.chart-title strong,
.report-row strong {
  color: var(--cyan-dark);
  font-size: 1.1rem;
}

.bar-chart {
  display: flex;
  gap: 12px;
  align-items: end;
  height: 178px;
  margin-top: 20px;
  padding: 14px 10px 0;
  border-bottom: 1px solid var(--line);
}

.bar-chart i {
  flex: 1;
  min-width: 22px;
  background: linear-gradient(180deg, #21a9c6, #8ad8e5);
  border-radius: 4px 4px 0 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.mini-grid div {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.mini-grid span,
.recommendation-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.4rem;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 88px max(24px, calc((100vw - 1320px) / 2));
  color: #fff;
  background: var(--deep);
}

.sample-window {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.sample-row {
  height: 72px;
  background: linear-gradient(90deg, #eff7fb, #fff3d4);
}

.sample-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 18px;
}

.sample-columns span {
  min-height: 135px;
  background: linear-gradient(180deg, #e9f1f6, #ffffff);
  border: 1px solid #dce5eb;
  border-radius: 8px;
}

.sample-button {
  position: absolute;
  right: 48px;
  bottom: 26px;
  left: 48px;
  min-height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--pink);
  border-radius: 7px;
  font-weight: 900;
}

.proof-band h2 {
  max-width: 560px;
  margin: 0 0 28px;
  font-size: 1.65rem;
  font-weight: 520;
  line-height: 1.28;
}

.proof-band h2 strong {
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list.two-cols {
  grid-template-columns: 1fr 1fr;
  column-gap: 42px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #28abc6;
  border-radius: 50%;
  font-size: 0.75rem;
}

.tabs-section,
.benefits-section,
.media-section,
.actions-section,
.resources-section,
.start-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.center-heading {
  max-width: 980px;
  margin: 0 auto 54px;
  text-align: center;
}

.center-heading h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.tab-shell {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.tab-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}

.tab-button {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
}

.tab-button:hover,
.tab-button.is-active {
  color: #fff;
  background: var(--cyan);
  border-color: var(--cyan);
}

.tab-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 36px 0 0;
}

.tab-content h3 {
  margin: 0 0 30px;
  font-size: 2.1rem;
  line-height: 1.12;
}

.tab-window {
  min-height: 420px;
}

.tab-report {
  padding: 22px;
  background: #fbfaf7;
}

.line-chart {
  position: relative;
  height: 130px;
  margin: 18px 0;
  background:
    linear-gradient(#e8edf2 1px, transparent 1px) 0 0 / 100% 32px,
    #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.line-chart i {
  position: absolute;
  bottom: 18px;
  width: 16%;
  height: 4px;
  background: var(--cyan);
  border-radius: 999px;
  transform-origin: left;
}

.line-chart i:nth-child(1) { left: 8%; transform: rotate(-12deg); }
.line-chart i:nth-child(2) { left: 22%; bottom: 36px; transform: rotate(8deg); }
.line-chart i:nth-child(3) { left: 36%; bottom: 52px; transform: rotate(-7deg); }
.line-chart i:nth-child(4) { left: 50%; bottom: 45px; transform: rotate(10deg); }
.line-chart i:nth-child(5) { left: 64%; bottom: 70px; transform: rotate(-10deg); }
.line-chart i:nth-child(6) { left: 78%; bottom: 82px; transform: rotate(6deg); }

.recommendation-card p {
  margin: 6px 0 0;
  font-weight: 760;
}

.benefits-section h2,
.media-section h2 {
  margin: 0 0 30px;
  text-align: center;
  font-size: 2.35rem;
}

.comparison-card {
  padding: 34px;
  border: 1px solid #ccd8e1;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(9, 41, 49, 0.08);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  gap: 28px;
  align-items: center;
}

.comparison-head div {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.9rem;
  font-weight: 950;
  text-align: center;
}

.comparison-head div:first-child {
  background: linear-gradient(90deg, #ebfff0, #dfe5ff);
}

.comparison-head div:last-child {
  grid-column: 3;
  background: linear-gradient(90deg, #fdeaf4, #fff4cf);
}

.comparison-row {
  min-height: 136px;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 650;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row p {
  margin: 0;
}

.arrow-pill {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-weight: 950;
}

.blue-icon,
.pink-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
}

.blue-icon {
  background: linear-gradient(180deg, #9bdceb, #28abc6);
}

.pink-icon {
  background: linear-gradient(180deg, #f07ab5, #d51c82);
}

.media-section {
  text-align: center;
}

.media-frame {
  position: relative;
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  width: min(760px, 100%);
  min-height: 390px;
  margin: 28px auto 0;
  overflow: hidden;
  background: #fff;
  border: 6px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.speaker-pane {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: #fff;
  background:
    linear-gradient(rgba(9, 41, 49, 0.28), rgba(9, 41, 49, 0.2)),
    url("assets/sales-desk-texture.png");
  background-size: cover;
}

.speaker-face {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-size: 2.1rem;
  font-weight: 950;
}

.speaker-pane p {
  max-width: 190px;
  margin: 0;
  font-weight: 850;
}

.media-screen {
  padding: 28px;
}

.media-heading {
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 850;
}

.media-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.media-columns div {
  min-height: 160px;
  padding: 24px;
  border-radius: 10px;
}

.media-columns div:first-child {
  background: linear-gradient(90deg, #ebfff0, #dfe5ff);
}

.media-columns div:last-child {
  background: linear-gradient(90deg, #fdeaf4, #fff4cf);
}

.media-columns h3 {
  margin: 0 0 10px;
}

.media-columns p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 54px;
  padding: 0 34px;
  color: #fff;
  background: #c466b6;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(9, 41, 49, 0.22);
  transform: translate(-50%, -50%);
  font-weight: 900;
}

.media-action {
  margin-top: 58px;
}

.free-note {
  margin: 18px 0 0;
  color: #56545a;
  font-size: 1.12rem;
  font-weight: 720;
}

.free-note::first-letter {
  color: var(--pink);
}

.actions-section {
  display: grid;
  gap: 58px;
}

.action-feature {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 62px;
  align-items: center;
  padding: 48px;
  background: var(--soft);
}

.action-feature h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.14;
}

.action-feature p {
  max-width: 480px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.14rem;
}

.action-board {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 18px;
  background: #f3eee6;
}

.action-board aside,
.action-board > div {
  display: grid;
  gap: 10px;
}

.action-board aside {
  align-content: start;
}

.action-board aside span {
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.action-board aside span.active {
  color: #fff;
  background: var(--cyan);
}

.action-item {
  min-height: 70px;
  padding: 18px;
  background: #fff;
  border-left: 6px solid #b090ff;
  border-radius: 8px;
  font-weight: 850;
}

.action-item.accent {
  border-color: #ffb65c;
}

.action-item.blue {
  border-color: #62cde2;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.action-grid article {
  min-height: 460px;
  padding: 34px;
  overflow: hidden;
  background: var(--soft);
}

.action-grid h3 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.12;
}

.action-grid p {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.05rem;
}

.mini-window {
  min-height: 260px;
  background: #fff;
  border: 1px solid rgba(9, 41, 49, 0.28);
  border-radius: 8px;
}

.mini-lines {
  background:
    linear-gradient(180deg, transparent 78%, rgba(9, 41, 49, 0.08) 78%),
    linear-gradient(135deg, transparent 38%, rgba(21, 152, 184, 0.16) 38% 42%, transparent 42%),
    #fff;
}

.mini-bars {
  background:
    linear-gradient(90deg, transparent 9%, #20a9c7 9% 15%, transparent 15% 27%, #20a9c7 27% 36%, transparent 36% 48%, #20a9c7 48% 58%, transparent 58% 70%, #20a9c7 70% 78%, transparent 78%),
    #fff;
  background-size: 100% 62%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.audience-section {
  padding-top: 56px;
}

.audience-card .comparison-head div:first-child {
  background: linear-gradient(90deg, #ebfff0, #dfe5ff);
}

.resources-section {
  padding-top: 86px;
  border-top: 1px solid var(--line);
}

.resources-hero {
  max-width: 740px;
  margin-bottom: 34px;
}

.resources-hero h1,
.resources-hero h2,
.start-section h1,
.start-section h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

.resources-hero p,
.start-section p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.resource-card {
  display: grid;
  align-content: space-between;
  min-height: 278px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.resource-card span {
  width: max-content;
  color: rgba(9, 41, 49, 0.58);
  font-family: var(--mono);
  font-weight: 900;
}

.resource-card h3 {
  margin: 26px 0 10px;
  font-size: 1.65rem;
}

.resource-card p {
  margin: 0 0 24px;
  color: var(--text);
  font-weight: 620;
}

.resource-card a {
  color: var(--cyan-dark);
  font-weight: 900;
}

.resource-card.green { background: #eaffef; }
.resource-card.coral { background: #fff0ea; }
.resource-card.blue { background: #e9f9ff; }
.resource-card.yellow { background: #fff6ce; }
.resource-card.pink { background: #fdeaf4; }
.resource-card.ink {
  color: #fff;
  background: var(--ink);
}

.resource-card.ink p,
.resource-card.ink span,
.resource-card.ink a {
  color: rgba(255, 255, 255, 0.82);
}

.start-section {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 72px;
  align-items: start;
  padding: 76px;
  margin-bottom: 60px;
  color: #fff;
  background:
    linear-gradient(rgba(9, 41, 49, 0.86), rgba(9, 41, 49, 0.88)),
    url("assets/sales-desk-texture.png");
  background-position: center;
  background-size: cover;
  border-radius: 16px;
}

.start-section .eyebrow {
  color: var(--yellow);
}

.start-section p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.lead-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(21, 152, 184, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .proof-band,
  .tab-content,
  .action-feature,
  .start-section {
    grid-template-columns: 1fr;
  }

  .proof-band {
    gap: 42px;
  }

  .resource-grid,
  .action-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-window {
    rotate: 0deg;
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .tabs-section,
  .benefits-section,
  .media-section,
  .actions-section,
  .resources-section,
  .start-section,
  .site-footer {
    width: min(100% - 28px, 1320px);
  }

  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .brand-logo {
    font-size: 1.28rem;
  }

  .header-button {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 70px;
    gap: 38px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  #hero-title,
  #heroDescription {
    min-height: 0;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero-actions,
  .primary-action {
    width: 100%;
  }

  .proof-band {
    padding: 58px 18px;
  }

  .check-list.two-cols,
  .mini-grid,
  .resource-grid,
  .action-grid,
  .media-frame,
  .media-columns {
    grid-template-columns: 1fr;
  }

  .center-heading h2,
  .resources-hero h1,
  .resources-hero h2,
  .start-section h1,
  .start-section h2 {
    font-size: 2.25rem;
  }

  .tab-list {
    justify-content: start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 14px;
  }

  .tab-button {
    flex: 0 0 auto;
  }

  .tab-content h3,
  .benefits-section h2,
  .media-section h2,
  .action-feature h2 {
    font-size: 1.9rem;
  }

  .comparison-card {
    padding: 18px;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .comparison-head div:last-child {
    grid-column: auto;
  }

  .comparison-row {
    min-height: auto;
    padding: 22px 0;
  }

  .arrow-pill {
    transform: rotate(90deg);
  }

  .media-frame {
    min-height: 0;
  }

  .speaker-pane {
    min-height: 210px;
  }

  .play-overlay {
    position: static;
    width: calc(100% - 28px);
    margin: 0 auto 18px;
    transform: none;
  }

  .action-feature,
  .start-section {
    padding: 28px 18px;
  }

  .action-board {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Style adaptation: paper-collage look, structure unchanged. */
:root {
  --ink: #10251f;
  --text: #24332e;
  --muted: #66706b;
  --line: rgba(16, 37, 31, 0.18);
  --canvas: #f6efdf;
  --soft: #f7f0e2;
  --deep: #173d33;
  --cyan: #1d7560;
  --cyan-dark: #0f4b3e;
  --pink: #df5a43;
  --pink-soft: #f7d9ce;
  --aqua: #d7eee2;
  --green: #1d7560;
  --yellow: #f2d47c;
  --orange: #df5a43;
  --lavender: #e7dfcf;
  --shadow: 0 24px 54px rgba(16, 37, 31, 0.18);
}

body {
  background:
    linear-gradient(rgba(246, 239, 223, 0.94), rgba(246, 239, 223, 0.94)),
    url("assets/sales-desk-texture.png");
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(16, 37, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 31, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: multiply;
}

.site-header {
  background: rgba(248, 242, 229, 0.86);
  border-bottom: 1px solid rgba(16, 37, 31, 0.12);
}

.brand-logo {
  background: linear-gradient(90deg, #df5a43, #c94e61, #0f4b3e, #1d7560);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-links a::after {
  background: var(--pink);
}

.header-button,
.primary-action {
  background: linear-gradient(180deg, #1d7560, #0f4b3e);
  border: 1px solid rgba(16, 37, 31, 0.18);
  box-shadow: 0 10px 18px rgba(16, 37, 31, 0.24);
}

.plain-link {
  color: var(--cyan-dark);
}

.product-hero {
  padding-inline: 34px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(246, 239, 223, 0.96) 0%, rgba(246, 239, 223, 0.84) 46%, rgba(246, 239, 223, 0.54) 100%),
    url("assets/sales-desk-texture.png");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -1px 0 rgba(16, 37, 31, 0.08);
}

.product-hero::before {
  display: none;
}

.hero h1 span,
.center-heading h2 span {
  color: var(--pink);
}

.hero-copy p,
.resources-hero p,
.start-section p,
.free-note,
.media-columns p {
  color: rgba(36, 51, 46, 0.76);
}

.product-window {
  background: #fbf6ea;
  border-color: rgba(16, 37, 31, 0.2);
  box-shadow: 0 24px 54px rgba(16, 37, 31, 0.2);
}

.window-bar {
  background: #e9e1d2;
  border-bottom-color: rgba(16, 37, 31, 0.14);
}

.window-bar strong {
  color: rgba(16, 37, 31, 0.7);
}

.report-screen,
.tab-report,
.action-board {
  background: #f2eadb;
}

.chart-card,
.recommendation-card,
.report-row,
.mini-grid div,
.lead-form,
.action-board aside span,
.action-item,
.media-screen,
.media-columns div,
.comparison-card,
.sample-window {
  background-color: rgba(255, 252, 244, 0.88);
  border-color: rgba(16, 37, 31, 0.16);
}

.screen-label,
.eyebrow {
  color: var(--pink);
}

.screen-top button {
  background: var(--deep);
}

.bar-chart i {
  background: linear-gradient(180deg, #1d7560, #a4cdbd);
}

.proof-band {
  background:
    linear-gradient(rgba(23, 61, 51, 0.94), rgba(23, 61, 51, 0.94)),
    url("assets/sales-desk-texture.png");
  background-position: center;
  background-size: cover;
}

.sample-row,
.media-columns div:first-child,
.comparison-head div:first-child,
.audience-card .comparison-head div:first-child {
  background: linear-gradient(90deg, #eef6e8, #e5ded0);
}

.media-columns div:last-child,
.comparison-head div:last-child {
  background: linear-gradient(90deg, #f8ded4, #f4e8c6);
}

.sample-button,
.play-overlay {
  background: #d85140;
}

.check-list li::before {
  background: var(--green);
}

.tab-button {
  background: rgba(255, 252, 244, 0.7);
  border-color: rgba(16, 37, 31, 0.18);
}

.tab-button:hover,
.tab-button.is-active {
  background: var(--deep);
  border-color: var(--deep);
}

.line-chart {
  background:
    linear-gradient(rgba(16, 37, 31, 0.1) 1px, transparent 1px) 0 0 / 100% 32px,
    rgba(255, 252, 244, 0.88);
  border-color: rgba(16, 37, 31, 0.16);
}

.line-chart i {
  background: var(--green);
}

.chart-title strong,
.report-row strong {
  color: var(--green);
}

.comparison-card {
  background:
    linear-gradient(rgba(255, 252, 244, 0.9), rgba(255, 252, 244, 0.9)),
    url("assets/sales-desk-texture.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 20px 44px rgba(16, 37, 31, 0.1);
}

.arrow-pill {
  color: var(--pink);
  border-color: var(--pink);
}

.blue-icon {
  background: linear-gradient(180deg, #88bca9, #1d7560);
}

.pink-icon {
  background: linear-gradient(180deg, #ec967f, #df5a43);
}

.media-frame {
  border-color: var(--deep);
}

.speaker-pane {
  background:
    linear-gradient(rgba(16, 37, 31, 0.26), rgba(16, 37, 31, 0.26)),
    url("assets/sales-desk-texture.png");
  background-size: cover;
}

.speaker-face {
  background: var(--pink);
}

.action-feature,
.action-grid article {
  background:
    linear-gradient(rgba(247, 240, 226, 0.92), rgba(247, 240, 226, 0.92)),
    url("assets/sales-desk-texture.png");
  background-size: cover;
}

.action-board aside span.active,
.action-item {
  background: var(--deep);
  color: #fff;
}

.action-item {
  border-left-color: var(--pink);
}

.action-item.accent {
  border-color: var(--yellow);
}

.action-item.blue {
  border-color: #a4cdbd;
}

.mini-window {
  background-color: rgba(255, 252, 244, 0.9);
  border-color: rgba(16, 37, 31, 0.24);
}

.mini-lines {
  background:
    linear-gradient(180deg, transparent 78%, rgba(16, 37, 31, 0.08) 78%),
    linear-gradient(135deg, transparent 38%, rgba(29, 117, 96, 0.16) 38% 42%, transparent 42%),
    rgba(255, 252, 244, 0.9);
}

.mini-bars {
  background:
    linear-gradient(90deg, transparent 9%, #1d7560 9% 15%, transparent 15% 27%, #1d7560 27% 36%, transparent 36% 48%, #1d7560 48% 58%, transparent 58% 70%, #1d7560 70% 78%, transparent 78%),
    rgba(255, 252, 244, 0.9);
  background-size: 100% 62%;
  background-position: bottom;
  background-repeat: no-repeat;
}

.resource-card {
  border-color: rgba(16, 37, 31, 0.14);
  box-shadow: 0 12px 26px rgba(16, 37, 31, 0.08);
}

.resource-card.green { background: #e9f5e5; }
.resource-card.coral { background: #f7ded4; }
.resource-card.blue { background: #e6efe8; }
.resource-card.yellow { background: #f5e7bd; }
.resource-card.pink { background: #f4d8d4; }
.resource-card.ink { background: var(--deep); }

.resource-card a {
  color: var(--cyan-dark);
}

.start-section {
  background:
    linear-gradient(rgba(16, 37, 31, 0.88), rgba(16, 37, 31, 0.9)),
    url("assets/sales-desk-texture.png");
  background-position: center;
  background-size: cover;
}

.site-footer {
  background: rgba(246, 239, 223, 0.72);
}

.nav-links a.is-active,
.header-button.is-active {
  color: var(--pink);
}

.header-button.is-active {
  color: #fff;
  box-shadow:
    0 8px 20px rgba(20, 112, 126, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.32);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.start-section > div > p {
  color: rgba(255, 255, 255, 0.76);
}

.lead-form p {
  color: rgba(36, 51, 46, 0.7);
}

.page-hero {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 34px 72px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(246, 239, 223, 0.96) 0%, rgba(246, 239, 223, 0.84) 52%, rgba(246, 239, 223, 0.54) 100%),
    url("assets/sales-desk-texture.png");
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 3.5rem;
  line-height: 1.06;
}

.page-hero p:last-child {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(36, 51, 46, 0.76);
  font-size: 1.16rem;
  font-weight: 620;
}

.plan-cards,
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 96px;
}

@media (max-width: 760px) {
  .product-hero {
    padding-inline: 0;
    border-radius: 0;
  }

  .site-header {
    background: rgba(248, 242, 229, 0.92);
  }

  .page-hero {
    width: min(100% - 28px, 1320px);
    padding: 56px 0;
    border-radius: 0;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .plan-cards,
  .integration-grid {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1320px);
  }
}

/* Ravenna-inspired direction: clean hero, scenic dashboard preview, anonymized UI. */
:root {
  --ink: #111820;
  --text: #202834;
  --muted: #687281;
  --line: #dfe5ec;
  --canvas: #ffffff;
  --soft: #f7f9fb;
  --deep: #111820;
  --cyan: #2f7df6;
  --cyan-dark: #185dcc;
  --pink: #2f7df6;
  --shadow: 0 30px 70px rgba(17, 24, 32, 0.16);
}

body {
  background: #fff;
}

body::before {
  display: none;
}

.site-header {
  grid-template-columns: 160px 1fr auto;
  width: min(1100px, calc(100% - 40px));
  min-height: 62px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  box-shadow: none;
}

.brand-logo {
  color: var(--ink);
  background: none;
  font-size: 0.98rem;
  font-weight: 850;
}

.brand-logo::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 6px;
  background: linear-gradient(135deg, #111820 0 48%, transparent 48% 100%);
  transform: skew(-12deg);
}

.nav-links {
  gap: 32px;
  color: #202936;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links a::after {
  height: 1px;
  background: var(--ink);
}

.header-button {
  min-height: 32px;
  padding: 7px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #dce3eb;
  border-radius: 7px;
  box-shadow: none;
  font-size: 0.72rem;
  font-weight: 750;
}

.header-button:hover,
.header-button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.primary-action {
  min-height: 40px;
  padding: 11px 18px;
  background: var(--ink);
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.16);
  font-size: 0.82rem;
}

.product-hero {
  display: flex;
  flex-direction: column;
  width: min(1100px, calc(100% - 40px));
  min-height: 0;
  padding: 48px 0 0;
  text-align: center;
  overflow: hidden;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.product-hero::before {
  display: none;
}

.product-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 420px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0.9) 100%),
    url("assets/mountain-analytics-bg.png");
  background-position: center bottom;
  background-size: cover;
}

.hero-copy {
  width: min(780px, 100%);
  margin: 0 auto;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.2vw, 3.55rem);
  line-height: 1.04;
  font-weight: 820;
}

#hero-title,
#heroDescription {
  min-height: 0;
}

.hero h1 span,
.center-heading h2 span {
  color: #9ba1a8;
}

.hero-copy p {
  max-width: 620px;
  margin: 16px auto 0;
  color: #4e5968;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  justify-content: center;
  margin-top: 22px;
}

.product-hero .plain-link,
.hero-slide-controls {
  display: none;
}

.hero-window {
  width: min(960px, calc(100% - 28px));
  margin: 34px auto 0;
  rotate: 0deg;
  text-align: left;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.22);
}

.product-window {
  background: #fff;
  border-color: rgba(17, 24, 32, 0.18);
}

.window-bar {
  min-height: 42px;
  background: rgba(248, 250, 252, 0.96);
}

.window-bar strong {
  color: #4e5968;
  font-size: 0.74rem;
}

.report-screen {
  padding: 26px;
  background: #fff;
}

.screen-label {
  color: #2f7df6;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.screen-top h2 {
  font-size: 1.65rem;
}

.screen-top button {
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
}

.chart-card,
.recommendation-card,
.report-row,
.mini-grid div {
  border-color: #dce3eb;
  border-radius: 9px;
}

.chart-title strong,
.report-row strong {
  color: #185dcc;
}

.bar-chart {
  height: 185px;
}

.bar-chart i {
  background: linear-gradient(180deg, #4258f0, #20b7ed);
}

.mini-grid strong {
  color: var(--ink);
}

.page-hero {
  width: min(1100px, calc(100% - 40px));
  padding: 74px 0 64px;
  text-align: center;
  background: #fff;
  border-radius: 0;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1;
}

.page-hero p:last-child {
  margin: 20px auto 0;
  color: #4e5968;
  font-size: 0.98rem;
}

.proof-band,
.start-section {
  border-radius: 0;
}

@media (max-width: 1040px) {
  .product-hero {
    width: min(100% - 28px, 1100px);
    padding-top: 42px;
  }

  .hero-window {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 1100px);
    background: rgba(255, 255, 255, 0.94);
  }

  .brand-logo {
    font-size: 1rem;
  }

  .header-button {
    min-height: 38px;
    padding: 9px 12px;
  }

  .product-hero {
    padding-top: 40px;
  }

  .product-hero::after {
    height: 340px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-window {
    margin-top: 32px;
  }

  .report-screen {
    padding: 16px;
  }

  .screen-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .screen-top h2 {
    font-size: 1.42rem;
  }

  .bar-chart {
    height: 150px;
    gap: 8px;
  }

  .bar-chart i {
    min-width: 12px;
  }

  .page-hero {
    width: min(100% - 28px, 1100px);
    padding: 52px 0 44px;
  }
}

/* Homepage hero: SparkToro-like split with animated anonymized report. */
.hero.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.95fr);
  gap: 76px;
  align-items: center;
  width: 100%;
  min-height: 760px;
  padding: 72px max(34px, calc(50vw - 626px)) 86px;
  text-align: left;
  background:
    radial-gradient(circle at 18% 16%, rgba(213, 28, 130, 0.12), transparent 34%),
    radial-gradient(circle at 62% 12%, rgba(255, 240, 189, 0.8), transparent 35%),
    linear-gradient(180deg, #fff8fb 0%, #fff 74%);
  border-radius: 0;
  overflow: visible;
}

.hero.product-hero::after {
  display: none;
}

.hero.product-hero .hero-copy {
  width: auto;
  margin: 0;
  transition:
    opacity 380ms ease,
    transform 380ms ease,
    filter 380ms ease;
}

.hero.product-hero .hero-copy.is-transitioning {
  opacity: 0.24;
  filter: blur(2px);
  transform: translateY(8px);
}

.hero.product-hero .eyebrow {
  color: #d51c82;
}

.hero.product-hero h1 {
  max-width: 650px;
  min-height: 5.1em;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  line-height: 1.02;
}

.hero.product-hero #hero-title {
  min-height: 5.1em;
}

.hero.product-hero h1 span {
  color: #d51c82;
}

.hero.product-hero .hero-copy p {
  max-width: 570px;
  min-height: 4.8em;
  margin: 24px 0 0;
  color: #506074;
  font-size: 1.14rem;
  line-height: 1.58;
}

.hero.product-hero #heroDescription {
  min-height: 4.8em;
}

.hero.product-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
}

.hero.product-hero .hero-copy .hero-microcopy {
  max-width: 560px;
  min-height: 0;
  margin: 14px 0 0;
  color: #5f6b7a;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 700;
}

.hero.product-hero .primary-action {
  color: #fff;
  background: linear-gradient(180deg, #21a9c6, #0d86a4);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(13, 134, 164, 0.24);
}

.hero.product-hero .primary-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(13, 134, 164, 0.28);
}

.hero-visual {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.hero-report-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.hero-report-tabs button {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  min-width: max-content;
  min-height: 34px;
  padding: 8px 12px;
  color: #536174;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dce3eb;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
  transition:
    color 120ms ease,
    background 120ms ease,
    border-color 120ms ease,
    transform 120ms ease;
}

.hero-report-tabs button:hover {
  transform: translateY(-1px);
}

.hero-report-tabs button.is-active {
  color: #fff;
  background: #0d86a4;
  border-color: #0d86a4;
  box-shadow: 0 8px 18px rgba(13, 134, 164, 0.22);
}

.hero-report-tabs button.is-active::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  transform-origin: left;
  animation: tabProgress 3900ms linear both;
}

.hero.product-hero .hero-window {
  display: block;
  width: 100%;
  margin: 0;
  color: inherit;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 30px 62px rgba(17, 24, 32, 0.2);
  cursor: pointer;
  animation: none;
  transition:
    opacity 420ms ease,
    filter 420ms ease,
    box-shadow 220ms ease;
}

.hero.product-hero .hero-window:hover {
  box-shadow: 0 34px 70px rgba(17, 24, 32, 0.24);
}

.hero.product-hero .hero-window:focus-visible {
  outline: 3px solid rgba(13, 134, 164, 0.42);
  outline-offset: 6px;
}

.hero.product-hero .hero-window.is-transitioning {
  opacity: 0.38;
  filter: blur(1.5px) saturate(0.92);
}

.hero.product-hero .window-bar {
  min-height: 40px;
  background: #f1f5f9;
}

.hero.product-hero .report-screen {
  max-height: 410px;
  overflow: hidden;
  background: #fbfaf7;
}

.hero.product-hero .screen-label {
  color: #d51c82;
}

.hero.product-hero .report-action-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  color: #fff;
  background: #111820;
  border-radius: 7px;
  font-weight: 850;
}

.hero.product-hero .chart-card {
  background: #fff;
}

.hero.product-hero .bar-chart i {
  background: linear-gradient(180deg, #1a9bb3 0%, #77d2df 100%);
  transform-origin: bottom;
  animation: growColumn 570ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero.product-hero .bar-chart i:nth-child(2) { animation-delay: 45ms; }
.hero.product-hero .bar-chart i:nth-child(3) { animation-delay: 90ms; }
.hero.product-hero .bar-chart i:nth-child(4) { animation-delay: 135ms; }
.hero.product-hero .bar-chart i:nth-child(5) { animation-delay: 180ms; }
.hero.product-hero .bar-chart i:nth-child(6) { animation-delay: 225ms; }
.hero.product-hero .bar-chart i:nth-child(7) { animation-delay: 270ms; }

.hero-window.is-animating .screen-top,
.hero-window.is-animating .chart-card,
.hero-window.is-animating .mini-grid div {
  animation: dashboardFade 315ms ease both;
}

.hero-window.is-animating .chart-card {
  animation-delay: 52ms;
}

.hero-window.is-animating .mini-grid div {
  animation-delay: 98ms;
}

@keyframes growColumn {
  from {
    opacity: 0.4;
    transform: scaleY(0.24);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes dashboardFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes reportFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .hero.product-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }

  .hero-report-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero.product-hero {
    width: 100%;
    min-height: auto;
    padding: 48px 28px 64px;
  }

  .hero.product-hero h1 {
    min-height: 0;
    font-size: 2.65rem;
  }

  .hero.product-hero #hero-title {
    min-height: 0;
  }

  .hero.product-hero .hero-copy p {
    min-height: 0;
    font-size: 1rem;
  }

  .hero.product-hero #heroDescription {
    min-height: 0;
  }

  .hero-report-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .hero.product-hero .report-screen {
    max-height: 520px;
  }
}

/* Homepage proof band: dark audience-research summary. */
.proof-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(500px, 1fr);
  gap: 108px;
  align-items: center;
  width: 100%;
  min-height: 480px;
  margin: 0;
  padding: 78px max(80px, calc(50vw - 626px));
  color: #fff;
  background: #4f5d72;
  background-image:
    radial-gradient(circle at 18% 48%, rgba(31, 169, 198, 0.14), transparent 28%),
    linear-gradient(180deg, #4d5b70 0%, #4c5a6e 100%);
}

.proof-band .sample-card {
  display: flex;
  justify-content: flex-end;
}

.proof-band .sample-window {
  display: block;
  position: relative;
  width: min(560px, 100%);
  min-height: 272px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #fbfaf7;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(20, 27, 38, 0.26);
  cursor: pointer;
  transition:
    box-shadow 220ms ease,
    filter 220ms ease;
}

.proof-band .sample-window:hover {
  box-shadow: 0 28px 60px rgba(20, 27, 38, 0.3);
  filter: saturate(1.04);
}

.proof-band .sample-window:focus-visible {
  outline: 3px solid rgba(37, 171, 197, 0.52);
  outline-offset: 6px;
}

.proof-band .sample-window::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(251, 250, 247, 0), rgba(79, 93, 114, 0.44));
  pointer-events: none;
}

.proof-band .sample-top {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 12px;
  padding: 10px 12px;
  color: #0f2630;
  background: #f1efe7;
  border-bottom: 1px solid #dfe5ec;
}

.proof-band .sample-top div {
  display: grid;
  gap: 2px;
}

.proof-band .sample-top span {
  color: #697486;
  font-size: 0.64rem;
  font-weight: 800;
}

.proof-band .sample-top strong {
  font-size: 1.22rem;
  line-height: 1.1;
}

.proof-band .sample-top small {
  color: #8993a1;
  font-size: 0.62rem;
  line-height: 1.2;
}

.sample-line-card svg {
  width: 100%;
  height: 42px;
  overflow: visible;
}

.sample-line-card polyline {
  fill: none;
  stroke: #1a9bb3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.sample-line-card path {
  fill: none;
  stroke: #d7dde5;
  stroke-width: 1;
}

.proof-band .sample-body {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 10px;
  padding: 10px 12px 70px;
}

.sample-panel {
  min-height: 156px;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid #dfe5ec;
  border-radius: 6px;
}

.sample-panel-title {
  display: block;
  margin-bottom: 8px;
  color: #344052;
  font-size: 0.6rem;
  font-weight: 850;
}

.sample-donut {
  width: 108px;
  aspect-ratio: 1;
  margin: 4px auto 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fbfaf7 0 42%, transparent 43%),
    conic-gradient(#2f99e8 0 58%, #d55f9f 58% 86%, #25abc5 86% 100%);
  box-shadow: inset 0 0 0 1px rgba(15, 38, 48, 0.08);
}

.sample-legend {
  display: grid;
  gap: 4px;
  justify-content: start;
  color: #8a95a5;
  font-size: 0.55rem;
  font-weight: 750;
}

.sample-legend span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.sample-legend i {
  width: 6px;
  height: 6px;
  background: #2f99e8;
  border-radius: 50%;
}

.sample-legend span:nth-child(2) i {
  background: #d55f9f;
}

.sample-legend span:nth-child(3) i {
  background: #25abc5;
}

.sample-bars {
  display: grid;
  gap: 7px;
}

.sample-bars div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 8px;
  align-items: center;
}

.sample-bars span {
  display: block;
  height: 13px;
  background: linear-gradient(90deg, #dbeef3, #b9dbe3);
  border-radius: 3px;
}

.sample-bars strong {
  color: #5e6978;
  font-size: 0.6rem;
  text-align: right;
}

.sample-button {
  position: absolute;
  right: 40px;
  bottom: 30px;
  left: 40px;
  z-index: 2;
  min-height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #d51c82;
  border-radius: 7px;
  box-shadow: 0 14px 32px rgba(68, 19, 49, 0.26);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.proof-band h2 {
  max-width: 610px;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 520;
  line-height: 1.28;
}

.proof-band h2 strong {
  color: #fff;
  font-weight: 900;
}

.proof-band .check-list {
  gap: 18px 46px;
}

.proof-band .check-list.two-cols {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.proof-band .check-list li {
  min-height: 24px;
  padding-left: 32px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.32;
}

.proof-band .check-list li::before {
  top: 1px;
  width: 20px;
  height: 20px;
  color: #fff;
  background: #25abc5;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 24px;
  color: #fff;
  background: #d51c82;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(68, 19, 49, 0.24);
  font-size: 0.98rem;
  font-weight: 900;
}

.proof-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .proof-band {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px max(28px, calc(50vw - 360px));
  }

  .proof-band .sample-card {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .proof-band {
    padding: 54px 28px;
  }

  .sample-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sample-donut {
    width: 118px;
    margin-inline: 0;
  }

  .sample-button {
    right: 18px;
    left: 18px;
    min-height: 50px;
    text-align: center;
  }

  .proof-band .check-list.two-cols {
    grid-template-columns: 1fr;
  }
}

/* Homepage next actions: turns audience research into immediate work. */
.next-actions-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1fr);
  gap: 78px;
  align-items: center;
  width: 100%;
  min-height: 510px;
  padding: 82px max(80px, calc(50vw - 626px));
  background: #f6f7f9;
}

.next-actions-copy {
  max-width: 580px;
}

.next-actions-copy .eyebrow {
  color: #5b6678;
}

.next-actions-copy h2 {
  margin: 0;
  color: #0f1a24;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.next-actions-copy p:last-child {
  margin: 24px 0 0;
  color: #4d5b6d;
  font-size: 1.2rem;
  line-height: 1.58;
}

.next-actions-card {
  display: block;
  width: min(760px, 100%);
  color: #172331;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  box-shadow: 0 24px 54px rgba(20, 31, 45, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.next-actions-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 68px rgba(20, 31, 45, 0.16);
}

.next-actions-card:focus-visible {
  outline: 3px solid rgba(13, 134, 164, 0.42);
  outline-offset: 6px;
}

.plan-card-head {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  background: linear-gradient(90deg, #fbfdf5, #f9fff9);
  border-bottom: 1px solid #dfe6ee;
}

.plan-card-icon {
  width: 34px;
  height: 34px;
  background:
    linear-gradient(#c6da4d, #c6da4d) 50% 58% / 10px 2px no-repeat,
    linear-gradient(#c6da4d, #c6da4d) 50% 44% / 2px 11px no-repeat,
    #fbfff1;
  border: 2px solid #d8e686;
  border-radius: 10px;
}

.plan-card-head span {
  display: block;
  color: #d51c82;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card-head strong {
  display: block;
  margin-top: 3px;
  color: #172331;
  font-size: 1.45rem;
  line-height: 1.16;
}

.plan-card-head em {
  align-self: start;
  padding: 5px 9px;
  color: #8ca51c;
  background: #f6ffd9;
  border: 1px solid #c6da4d;
  border-radius: 6px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.plan-action {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  margin: 18px 22px 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 10px;
}

.plan-action.is-featured {
  padding: 20px 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(23, 35, 49, 0.06);
}

.plan-action.is-warning {
  background: #fffaf8;
  border-color: #f0d7cc;
}

.plan-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #0d86a4;
  background: #eaf8fb;
  border: 1px solid #cdebf2;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
}

.plan-action h3 {
  margin: 0;
  color: #172331;
  font-size: 1.02rem;
  line-height: 1.28;
}

.plan-action p {
  margin: 6px 0 0;
  color: #566375;
  font-size: 0.9rem;
  line-height: 1.38;
}

.plan-action .plan-label {
  margin-top: 12px;
  color: #172331;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-card-button {
  display: grid;
  place-items: center;
  width: min(460px, calc(100% - 44px));
  min-height: 46px;
  margin: 20px auto 22px;
  color: #fff;
  background: #082a32;
  border-radius: 7px;
  box-shadow: 0 14px 28px rgba(8, 42, 50, 0.18);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .next-actions-section {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 68px max(28px, calc(50vw - 360px));
  }
}

@media (max-width: 760px) {
  .next-actions-section {
    padding: 56px 28px;
  }

  .next-actions-copy h2 {
    font-size: 2.25rem;
  }

  .next-actions-copy p:last-child {
    font-size: 1rem;
  }

  .plan-card-head {
    grid-template-columns: 34px 1fr;
  }

  .plan-card-head em {
    grid-column: 2;
    justify-self: start;
  }

  .plan-action {
    grid-template-columns: 1fr;
  }
}

/* Homepage benefits map: what PainRadar finds and how to use it. */
.benefits-map-section {
  width: 100%;
  padding: 84px max(80px, calc(50vw - 626px)) 96px;
  background: #fff;
}

.benefits-map-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.benefits-map-heading .eyebrow {
  color: #d51c82;
}

.benefits-map-heading h2 {
  margin: 0;
  color: #172331;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.benefits-map-heading p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #566375;
  font-size: 1.08rem;
  line-height: 1.56;
}

.benefits-map-table {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border: 1px solid #dce3eb;
  border-radius: 18px;
}

.benefits-map-header,
.benefit-map-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: center;
}

.benefits-map-header {
  gap: 0;
  margin-bottom: 10px;
}

.benefits-map-header div {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 20px;
  color: #092931;
  border-radius: 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  text-align: center;
}

.benefits-map-header div:first-child {
  background: linear-gradient(90deg, #efffed 0%, #e3e9ff 100%);
}

.benefits-map-header div:last-child {
  background: linear-gradient(90deg, #fff0fb 0%, #fff5ce 100%);
}

.benefit-map-row {
  min-height: 132px;
  border-bottom: 1px solid #e7ebef;
}

.benefit-map-row:last-child {
  border-bottom: 0;
}

.benefit-map-cell {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 24px;
}

.benefit-map-cell p {
  margin: 0;
  color: #0f2a33;
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.42;
}

.benefit-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  color: #ff7248;
  border: 2px solid #ff7248;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(180deg, #7bcde0, #24a7c3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.benefit-icon::before {
  content: "";
}

.benefit-icon.communities::before { content: "TG"; font-size: 0.58rem; }
.benefit-icon.ads::before { content: "AD"; font-size: 0.58rem; }
.benefit-icon.search::before { content: "Я"; }
.benefit-icon.seo::before { content: "#"; }
.benefit-icon.creators::before { content: "★"; }
.benefit-icon.collab::before { content: "↔"; }
.benefit-icon.pain::before { content: "?"; }
.benefit-icon.copy::before { content: "T"; }
.benefit-icon.local::before { content: "2"; }
.benefit-icon.outreach::before { content: "→"; }
.benefit-icon.antifit::before { content: "!"; }
.benefit-icon.budget::before { content: "₽"; }

.benefit-map-row .benefit-map-cell:last-child .benefit-icon {
  background: linear-gradient(180deg, #e76cad, #d51c82);
}

@media (max-width: 1040px) {
  .benefits-map-section {
    padding: 68px max(28px, calc(50vw - 360px)) 78px;
  }

  .benefits-map-table {
    padding: 22px;
  }

  .benefits-map-header,
  .benefit-map-row {
    grid-template-columns: 1fr;
  }

  .benefits-map-header {
    display: none;
  }

  .benefit-map-row {
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid #e3e8ee;
    border-radius: 14px;
  }

  .benefit-map-row:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid #e3e8ee;
  }

  .benefit-map-cell {
    padding: 0;
  }

  .benefit-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  .benefits-map-section {
    padding: 58px 28px 68px;
  }

  .benefits-map-heading {
    text-align: left;
  }

  .benefits-map-heading h2 {
    font-size: 2.2rem;
  }

  .benefits-map-table {
    padding: 14px;
    border-radius: 14px;
  }

  .benefit-map-cell {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .benefit-map-cell p {
    font-size: 0.98rem;
  }
}

/* Homepage action plan: redesigned as a product board, not a generic text/card block. */
.next-actions-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(640px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  width: 100%;
  min-height: 720px;
  padding: 96px max(80px, calc(50vw - 626px));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(213, 28, 130, 0.28), transparent 34%),
    radial-gradient(circle at 76% 18%, rgba(39, 175, 198, 0.28), transparent 30%),
    linear-gradient(135deg, #071219 0%, #102733 52%, #071016 100%);
}

.next-actions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 80%);
  pointer-events: none;
}

.next-actions-section::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    -130px -80px 0 -88px rgba(213, 28, 130, 0.55),
    -250px -10px 0 -118px rgba(248, 184, 61, 0.42);
  pointer-events: none;
}

.action-lab-copy,
.action-plan-board {
  position: relative;
  z-index: 1;
}

.action-lab-copy {
  max-width: 590px;
}

.action-lab-copy .eyebrow {
  color: #ff65ad;
}

.action-lab-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.35vw, 5.15rem);
  line-height: 1.02;
}

.action-lab-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #cad7e1;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 650;
  line-height: 1.62;
}

.action-lab-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 430px;
  margin-top: 34px;
}

.action-lab-kpis span {
  display: grid;
  gap: 2px;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(203, 220, 232, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.action-lab-kpis strong {
  color: #56d3e5;
  font-size: 2rem;
  line-height: 1;
}

.action-lab-kpis small {
  color: #dce6ee;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.action-plan-board {
  display: block;
  min-width: 0;
  color: #172331;
  text-decoration: none;
  border: 1px solid rgba(220, 231, 239, 0.9);
  border-radius: 8px;
  background: #f7fafc;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.34),
    0 0 0 10px rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transform: rotate(-1.1deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.action-plan-board:hover {
  transform: rotate(-1.1deg) translateY(-4px);
  box-shadow:
    0 52px 110px rgba(0, 0, 0, 0.38),
    0 0 0 10px rgba(255, 255, 255, 0.045);
}

.action-board-top {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 18px 22px;
  background:
    linear-gradient(90deg, #eef5f9 0%, #f7f1e4 100%);
  border-bottom: 1px solid #d9e2ea;
}

.board-dot {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  border-radius: 50%;
  background: #ff6d50;
  box-shadow: 18px 0 #f4b83d, 36px 0 #45bd68;
}

.action-board-top span:not(.board-dot),
.action-board-footer span {
  display: block;
  color: #6c7888;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.action-board-top strong {
  display: block;
  margin-top: 2px;
  color: #172331;
  font-size: 1.16rem;
  font-weight: 950;
}

.action-board-top em {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #0b738a;
  border: 1px solid #a8dce7;
  border-radius: 8px;
  background: #ecfbff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
}

.action-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.action-lane {
  position: relative;
  min-height: 276px;
  padding: 16px;
  border: 1px solid #dce5ed;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    #fff;
  overflow: hidden;
}

.action-lane::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #d51c82;
}

.action-lane.lane-search::before {
  background: #0e9ab6;
}

.action-lane.lane-stop::before {
  background: #ff744f;
}

.action-lane > span {
  display: inline-grid;
  place-items: center;
  min-height: 25px;
  padding: 0 9px;
  color: #5a6778;
  border: 1px solid #dce5ed;
  border-radius: 999px;
  background: #f5f8fb;
  font-size: 0.72rem;
  font-weight: 950;
}

.action-lane h3 {
  margin: 18px 0 0;
  color: #172331;
  font-size: clamp(1.05rem, 1.25vw, 1.32rem);
  line-height: 1.1;
}

.action-task {
  min-height: 116px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #e3e9ef;
  border-radius: 8px;
  background: #f8fafc;
}

.action-task.is-risk {
  border-color: #ffd1c4;
  background: #fff5f2;
}

.action-task strong {
  display: block;
  color: #172331;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
}

.action-task p {
  margin: 10px 0 0;
  color: #647386;
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.42;
}

.action-mini {
  margin-top: 14px;
  padding-top: 12px;
  color: #718094;
  border-top: 1px solid #e5ebf1;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
}

.action-board-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px 22px;
  border-top: 1px solid #dce5ed;
  background:
    linear-gradient(90deg, rgba(213, 28, 130, 0.08), rgba(39, 175, 198, 0.1)),
    #fff;
}

.action-board-footer strong {
  display: block;
  max-width: 520px;
  margin-top: 5px;
  color: #172331;
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1.22;
}

.action-board-cta {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: #fff !important;
  border-radius: 8px;
  background: #082a32;
  box-shadow: 0 14px 28px rgba(8, 42, 50, 0.22);
  font-size: 0.92rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.action-dashboard-shell {
  min-width: 0;
  background: #f6f9fc;
}

.action-window-bar {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 18px;
  border-bottom: 1px solid #d9e2ea;
  background:
    linear-gradient(90deg, #eef5f9 0%, #fbf6e9 100%);
}

.action-window-bar strong {
  color: #172331;
  font-size: 1.02rem;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-pill {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #0b738a;
  border: 1px solid #a8dce7;
  border-radius: 8px;
  background: #ecfbff;
  font-size: 0.78rem;
  font-weight: 950;
}

.action-dashboard-body {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) 158px;
  gap: 12px;
  padding: 14px;
}

.action-dashboard-nav,
.action-dashboard-title,
.action-dashboard-summary,
.action-metric-row > div,
.action-rec-row {
  border: 1px solid #dce5ed;
  border-radius: 8px;
  background: #fff;
}

.action-dashboard-nav {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 10px;
}

.action-dashboard-nav > span {
  display: grid;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  color: #667386;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 900;
}

.action-dashboard-nav > span.active {
  color: #fff;
  background: #0e9ab6;
  box-shadow: 0 10px 20px rgba(14, 154, 182, 0.18);
}

.action-readiness {
  margin-top: 6px;
  padding: 11px 9px;
  border: 1px solid #dce5ed;
  border-radius: 8px;
  background: #f6fafc;
}

.action-readiness small {
  display: block;
  color: #728095;
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.action-readiness strong {
  display: block;
  margin-top: 4px;
  color: #0e9ab6;
  font-size: 1.25rem;
  font-weight: 950;
}

.action-dashboard-main {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.action-dashboard-title {
  padding: 13px 14px;
}

.action-dashboard-title span {
  display: block;
  color: #d51c82;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.action-dashboard-title h3 {
  margin: 6px 0 0;
  color: #172331;
  font-size: 1.22rem;
  line-height: 1.1;
}

.action-dashboard-title p {
  margin: 7px 0 0;
  color: #667386;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.action-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.action-metric-row > div {
  min-height: 70px;
  padding: 10px;
  background:
    linear-gradient(180deg, #fff, #f8fbfd);
}

.action-metric-row span {
  display: block;
  color: #788596;
  font-size: 0.62rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.action-metric-row strong {
  display: block;
  margin-top: 7px;
  color: #172331;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.05;
}

.action-rec-list {
  display: grid;
  gap: 8px;
}

.action-rec-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 58px;
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 10px;
}

.action-rec-row.is-primary {
  border-color: rgba(14, 154, 182, 0.38);
  background:
    linear-gradient(90deg, rgba(14, 154, 182, 0.08), #fff 44%);
}

.action-rec-row.is-risk {
  border-color: rgba(255, 116, 79, 0.32);
  background:
    linear-gradient(90deg, rgba(255, 116, 79, 0.08), #fff 48%);
}

.rec-index {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #0b738a;
  border: 1px solid #bde6ef;
  border-radius: 50%;
  background: #ecfbff;
  font-size: 0.72rem;
  font-weight: 950;
}

.action-rec-row.is-risk .rec-index {
  color: #c75134;
  border-color: #ffd1c4;
  background: #fff5f2;
}

.action-rec-row strong {
  display: block;
  color: #172331;
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.18;
}

.action-rec-row p {
  margin: 5px 0 0;
  color: #69778a;
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.32;
}

.action-rec-row em {
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-height: 27px;
  padding: 0 8px;
  color: #5e6b7d;
  border: 1px solid #dce5ed;
  border-radius: 999px;
  background: #f7fafc;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 950;
}

.action-dashboard-summary {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 13px;
  background:
    linear-gradient(180deg, #fff, #f5fbfd);
}

.action-dashboard-summary > span:first-child {
  color: #d51c82;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.action-dashboard-summary strong {
  color: #172331;
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1.13;
}

.budget-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ebf2;
}

.budget-meter i {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0e9ab6, #d51c82);
}

.action-dashboard-summary ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-dashboard-summary li {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #5f6d7f;
  font-size: 0.72rem;
  font-weight: 850;
}

.action-dashboard-summary li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0e9ab6;
}

.action-dashboard-summary li:nth-child(2)::before {
  background: #d51c82;
}

.action-dashboard-summary li:nth-child(3)::before {
  background: #ff744f;
}

.action-dashboard-summary .action-board-cta {
  min-height: 39px;
  margin-top: 4px;
  padding: 0 12px;
  font-size: 0.82rem !important;
}

@media (max-width: 1120px) {
  .next-actions-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 78px max(28px, calc(50vw - 420px)) 86px;
  }

  .action-lab-copy {
    max-width: 760px;
  }

  .action-plan-board {
    transform: none;
  }

  .action-plan-board:hover {
    transform: translateY(-3px);
  }

  .action-dashboard-body {
    grid-template-columns: 108px minmax(0, 1fr) 170px;
  }
}

@media (max-width: 760px) {
  .next-actions-section {
    gap: 34px;
    padding: 62px 24px 70px;
  }

  .action-lab-copy h2 {
    font-size: 2.45rem;
  }

  .action-lab-copy p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 1rem;
  }

  .action-lab-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .action-lab-kpis span {
    min-height: 76px;
    padding: 12px 10px;
  }

  .action-lab-kpis strong {
    font-size: 1.55rem;
  }

  .action-lab-kpis small {
    font-size: 0.66rem;
  }

  .action-board-top {
    grid-template-columns: 48px 1fr;
  }

  .action-board-top em {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .action-board-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .action-lane {
    min-height: auto;
  }

  .action-task {
    min-height: auto;
  }

  .action-board-footer {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .action-board-cta {
    width: 100%;
  }

  .action-window-bar {
    grid-template-columns: 48px 1fr;
  }

  .dashboard-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .action-dashboard-body {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .action-dashboard-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .action-dashboard-nav > span {
    justify-content: center;
    padding: 0 6px;
    text-align: center;
  }

  .action-readiness {
    grid-column: 1 / -1;
  }

  .action-metric-row {
    grid-template-columns: 1fr;
  }

  .action-rec-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .action-rec-row em {
    grid-column: 2;
    justify-self: start;
  }
}

/* Homepage audience use cases: honest replacement for fake testimonials. */
.audience-usecases-section {
  position: relative;
  width: 100%;
  padding: 92px max(80px, calc(50vw - 626px)) 104px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}

.audience-usecases-section::before {
  content: "";
  position: absolute;
  top: 58px;
  right: max(34px, calc(50vw - 604px));
  width: 390px;
  height: 390px;
  border: 1px solid rgba(14, 154, 182, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(14, 154, 182, 0.12), transparent 64%);
  pointer-events: none;
}

.audience-usecases-section::after {
  content: "";
  position: absolute;
  left: max(24px, calc(50vw - 650px));
  bottom: 40px;
  width: 220px;
  height: 220px;
  background:
    linear-gradient(135deg, rgba(213, 28, 130, 0.12), rgba(248, 184, 61, 0.14));
  clip-path: polygon(0 18%, 84% 0, 100% 76%, 24% 100%);
  pointer-events: none;
}

.audience-usecases-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.audience-usecases-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
  color: #d51c82;
}

.audience-usecases-head h2 {
  max-width: 780px;
  margin: 0;
  color: #172331;
  font-size: clamp(2.3rem, 3.5vw, 4rem);
  line-height: 1.04;
}

.audience-usecases-head p:not(.eyebrow) {
  margin: 0;
  color: #566375;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.56;
}

.audience-usecases-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.audience-usecase-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 386px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #dbe4ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(33, 47, 63, 0.08);
}

.audience-usecase-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: #0e9ab6;
}

.audience-usecase-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(14, 154, 182, 0.1);
  pointer-events: none;
}

.audience-usecase-card.is-agency::before {
  background: #d51c82;
}

.audience-usecase-card.is-agency::after {
  background: rgba(213, 28, 130, 0.1);
}

.audience-usecase-card.is-founder::before {
  background: #ff744f;
}

.audience-usecase-card.is-founder::after {
  background: rgba(255, 116, 79, 0.11);
}

.audience-usecase-card.is-studio::before {
  background: #34b56a;
}

.audience-usecase-card.is-studio::after {
  background: rgba(52, 181, 106, 0.11);
}

.audience-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 46px;
}

.audience-role-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 8px;
  background: #0e9ab6;
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(14, 154, 182, 0.2);
}

.is-agency .audience-role-icon {
  background: #d51c82;
  box-shadow: 0 12px 24px rgba(213, 28, 130, 0.2);
}

.is-founder .audience-role-icon {
  background: #ff744f;
  box-shadow: 0 12px 24px rgba(255, 116, 79, 0.18);
}

.is-studio .audience-role-icon {
  background: #34b56a;
  box-shadow: 0 12px 24px rgba(52, 181, 106, 0.18);
}

.audience-card-top small {
  color: #6a7787;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-usecase-card h3 {
  margin: 26px 0 0;
  color: #172331;
  font-size: 1.55rem;
  line-height: 1.05;
}

.audience-usecase-card p {
  margin: 16px 0 0;
  color: #536172;
  font-size: 0.99rem;
  font-weight: 650;
  line-height: 1.5;
}

.audience-result {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid #dfe8ef;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 154, 182, 0.08), rgba(255, 255, 255, 0.84)),
    #f8fbfd;
}

.is-agency .audience-result {
  background:
    linear-gradient(135deg, rgba(213, 28, 130, 0.08), rgba(255, 255, 255, 0.84)),
    #f8fbfd;
}

.is-founder .audience-result {
  background:
    linear-gradient(135deg, rgba(255, 116, 79, 0.09), rgba(255, 255, 255, 0.84)),
    #f8fbfd;
}

.is-studio .audience-result {
  background:
    linear-gradient(135deg, rgba(52, 181, 106, 0.08), rgba(255, 255, 255, 0.84)),
    #f8fbfd;
}

.audience-result span {
  display: block;
  margin-bottom: 8px;
  color: #738092;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-result strong {
  display: block;
  color: #172331;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .audience-usecases-section {
    padding: 74px max(28px, calc(50vw - 420px)) 84px;
  }

  .audience-usecases-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .audience-usecases-head .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .audience-usecases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .audience-usecases-section {
    padding: 58px 24px 70px;
  }

  .audience-usecases-head h2 {
    font-size: 2.25rem;
  }

  .audience-usecases-head p:not(.eyebrow) {
    font-size: 1rem;
  }

  .audience-usecases-grid {
    grid-template-columns: 1fr;
  }

  .audience-usecase-card {
    min-height: auto;
    padding: 20px;
  }
}

/* Homepage signal map: replaces the old two-column benefits table. */
.benefits-map-section {
  position: relative;
  padding: 98px max(80px, calc(50vw - 626px)) 108px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.benefits-map-section::before {
  content: "";
  position: absolute;
  top: 72px;
  right: max(22px, calc(50vw - 656px));
  width: 320px;
  height: 210px;
  background:
    linear-gradient(135deg, rgba(14, 154, 182, 0.11), rgba(213, 28, 130, 0.08));
  clip-path: polygon(10% 0, 100% 18%, 82% 100%, 0 72%);
  pointer-events: none;
}

.benefits-map-section::after {
  content: "";
  position: absolute;
  left: max(14px, calc(50vw - 680px));
  bottom: 54px;
  width: 260px;
  height: 170px;
  border: 1px solid rgba(14, 154, 182, 0.18);
  transform: rotate(-8deg);
  pointer-events: none;
}

.signal-map-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(680px, 1fr);
  gap: 34px;
  width: min(1252px, 100%);
  margin: 0 auto;
}

.signal-map-intro {
  display: grid;
  align-content: start;
}

.signal-map-intro .eyebrow {
  color: #d51c82;
}

.signal-map-intro h2 {
  margin: 0;
  color: #172331;
  font-size: clamp(2.25rem, 3.55vw, 4.15rem);
  line-height: 1.04;
}

.signal-map-intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #566375;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.58;
}

.signal-map-stats {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.signal-map-stats span {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid #dce5ed;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #fff, #f6fbfd);
  box-shadow: 0 16px 36px rgba(39, 53, 70, 0.06);
}

.signal-map-stats strong {
  color: #0e9ab6;
  font-size: 1.58rem;
  font-weight: 950;
  line-height: 1;
}

.signal-map-stats small {
  color: #667386;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.signal-map-board {
  position: relative;
  padding: 16px;
  border: 1px solid #d9e3ec;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 255, 0.94));
  box-shadow: 0 26px 70px rgba(34, 49, 67, 0.12);
}

.signal-map-board::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(23, 35, 49, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 49, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.signal-board-top,
.signal-route-grid {
  position: relative;
  z-index: 1;
}

.signal-board-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid #dce5ed;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #eef9fb 0%, #fff6e4 100%);
}

.signal-board-top span,
.signal-board-top em,
.signal-source small,
.signal-action small {
  display: block;
  color: #738092;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.signal-board-top strong {
  display: block;
  margin-top: 4px;
  color: #172331;
  font-size: 1.26rem;
  font-weight: 950;
  line-height: 1.1;
}

.signal-board-top em {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #0b738a;
  border: 1px solid #a8dce7;
  border-radius: 8px;
  background: #ecfbff;
  font-style: normal;
}

.signal-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signal-route-card {
  --accent: #0e9ab6;
  --soft: #eefbfe;
  position: relative;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 224px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86));
}

.signal-route-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--accent);
}

.signal-route-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  background: var(--soft);
  transform: rotate(18deg);
  pointer-events: none;
}

.signal-route-card.is-wide {
  min-height: 224px;
}

.signal-route-card.is-search {
  --accent: #d51c82;
  --soft: #fff0f8;
}

.signal-route-card.is-creators {
  --accent: #6f6ce8;
  --soft: #f0f0ff;
}

.signal-route-card.is-pain {
  --accent: #ff744f;
  --soft: #fff2ed;
}

.signal-route-card.is-local {
  --accent: #34b56a;
  --soft: #effbf4;
}

.signal-route-card.is-antifit {
  --accent: #172331;
  --soft: #edf1f5;
}

.signal-card-head,
.signal-source,
.signal-action,
.signal-card-line {
  position: relative;
  z-index: 1;
}

.signal-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.signal-card-head span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 8px;
  background: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
}

.signal-card-head small {
  color: #657386;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.signal-source strong,
.signal-action strong {
  display: block;
  margin-top: 6px;
  color: #172331;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.28;
}

.signal-action {
  padding: 13px;
  border: 1px solid #dce5ed;
  border-radius: 8px;
  background: var(--soft);
}

.signal-card-line {
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent), rgba(23, 35, 49, 0.08));
}

.signal-card-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 1120px) {
  .benefits-map-section {
    padding: 76px max(28px, calc(50vw - 420px)) 86px;
  }

  .signal-map-layout {
    grid-template-columns: 1fr;
  }

  .signal-map-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .signal-map-stats span {
    grid-template-columns: 1fr;
  }

  .signal-route-card.is-wide {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .benefits-map-section {
    padding: 60px 24px 72px;
  }

  .signal-map-intro h2 {
    font-size: 2.3rem;
  }

  .signal-map-intro p:not(.eyebrow) {
    font-size: 1rem;
  }

  .signal-map-stats,
  .signal-route-grid {
    grid-template-columns: 1fr;
  }

  .signal-board-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-map-board {
    padding: 12px;
  }

  .signal-route-card {
    min-height: auto;
  }
}

/* Final footer: full contact/navigation screen inspired by the reference. */
.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(213, 28, 130, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(37, 171, 197, 0.16), transparent 28%),
    #062f36;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1fr);
  grid-template-areas:
    "contact links"
    "bottom bottom";
  gap: 76px 92px;
  width: min(1252px, 100%);
  min-height: 560px;
  margin: 0 auto;
  padding: 92px 0 72px;
}

.footer-contact {
  grid-area: contact;
  display: grid;
  align-content: start;
}

.footer-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 950;
}

.footer-brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    conic-gradient(from 18deg, #d51c82 0 24%, #ff744f 24% 39%, #f4b83d 39% 52%, #34b56a 52% 69%, #0e9ab6 69% 84%, #6f6ce8 84% 100%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.footer-brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #062f36;
}

.footer-contact h2 {
  max-width: 520px;
  margin: 86px 0 0;
  color: #fff;
  font-size: clamp(2.25rem, 3.2vw, 4rem);
  line-height: 1.1;
}

.footer-contact p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.5;
}

.footer-email {
  display: inline-block;
  width: max-content;
  margin-top: 28px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.28rem, 1.8vw, 2rem);
  font-weight: 950;
}

.footer-email:hover,
.footer-links a:hover {
  color: #56d3e5;
}

.footer-links {
  grid-area: links;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  align-content: start;
  padding-top: 126px;
}

.footer-links div {
  display: grid;
  gap: 17px;
  color: inherit;
  font-weight: 650;
}

.footer-links h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.footer-bottom {
  grid-area: bottom;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "contact"
      "links"
      "bottom";
    gap: 48px;
    width: min(840px, calc(100% - 56px));
    padding: 76px 0 64px;
  }

  .footer-contact h2 {
    margin-top: 56px;
  }

  .footer-links {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .footer-inner {
    width: calc(100% - 48px);
    min-height: auto;
    padding: 58px 0 52px;
  }

  .footer-contact h2 {
    margin-top: 46px;
    font-size: 2.45rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Specificity guard: older generic footer div rules should not reshape the final footer. */
.site-footer .footer-inner {
  display: grid;
}

.site-footer .footer-links {
  display: grid;
}

.site-footer .footer-links div {
  display: grid;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: flex-start;
  gap: 44px;
  width: 100%;
}

@media (max-width: 1120px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "contact"
      "links"
      "bottom";
  }
}

@media (max-width: 760px) {
  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Donor-inspired third block: concise recommendations split section. */
.next-actions-section.donor-recommendations-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(560px, 1fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  width: 100%;
  min-height: 420px;
  padding: 58px max(80px, calc(50vw - 626px)) 64px;
  overflow: hidden;
  color: #172331;
  background: #f4f6f8;
}

.next-actions-section.donor-recommendations-section::before,
.next-actions-section.donor-recommendations-section::after {
  display: none;
}

.recommendations-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.recommendations-copy h2 {
  margin: 0;
  color: #506074;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 520;
  line-height: 1.32;
}

.recommendations-copy h2::first-line {
  color: #506074;
}

.recommendations-copy h2 strong,
.recommendations-copy h2 b {
  color: #092931;
  font-weight: 950;
}

.recommendations-copy p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #5d6b7d;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.recommendations-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.recommendations-copy .primary-action {
  min-height: 48px;
  padding: 13px 22px;
  background: linear-gradient(180deg, #e32991, #c91474);
  box-shadow: 0 16px 32px rgba(213, 28, 130, 0.24);
}

.recommendations-price-note {
  color: #5f6b7a;
  font-size: 0.92rem;
  font-weight: 850;
}

.recommendations-preview {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}

.recommendations-card {
  position: relative;
  width: min(680px, 100%);
  min-height: 330px;
  margin-left: auto;
  padding: 18px 18px 78px;
  overflow: hidden;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    0 26px 68px rgba(30, 43, 58, 0.11),
    inset 0 0 0 8px rgba(255, 255, 255, 0.65);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.recommendations-preview:hover .recommendations-card {
  transform: translateY(-3px);
  box-shadow:
    0 32px 78px rgba(30, 43, 58, 0.14),
    inset 0 0 0 8px rgba(255, 255, 255, 0.7);
}

.recommendations-head {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  margin: -6px -6px 18px;
  padding: 14px 16px;
  border: 1px solid #dce8c0;
  border-radius: 7px 7px 0 0;
  background:
    linear-gradient(90deg, #fbfff1 0%, #f6fff7 100%);
}

.recommendations-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid #cde85c;
  border-radius: 8px;
}

.recommendations-icon::before {
  content: "";
  width: 10px;
  height: 13px;
  border: 2px solid #b5d83f;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.recommendations-icon::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 8px;
  height: 2px;
  background: #b5d83f;
  border-radius: 999px;
}

.recommendations-head strong {
  display: block;
  color: #172331;
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 1.05;
}

.recommendations-head em {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  margin-top: 6px;
  padding: 0 8px;
  color: #79a300;
  border: 1px solid #bde04c;
  border-radius: 5px;
  background: #fbfff1;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
}

.recommendations-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 0 0 14px;
  padding: 18px;
  border: 1px solid #e5ebf1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 49, 67, 0.045);
}

.recommendations-item.is-muted {
  opacity: 0.7;
  filter: blur(0.2px);
}

.recommendations-item-warning {
  border-color: #ffd7c8;
  background: linear-gradient(180deg, #fff, #fff8f5);
}

.recommendations-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #0b738a;
  border: 1px solid #bee6ef;
  border-radius: 50%;
  background: #ecfbff;
  font-size: 0.72rem;
  font-weight: 950;
}

.recommendations-item h3 {
  margin: 0 0 6px;
  color: #172331;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.22;
}

.recommendations-item p {
  margin: 0 0 6px;
  color: #647386;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.recommendations-label {
  color: #172331 !important;
  font-weight: 950 !important;
}

.recommendations-teaser {
  position: relative;
  margin: 16px 4px 4px;
  padding: 18px 20px;
  border: 1px dashed #cad5df;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), #f7f9fb);
  text-align: center;
}

.recommendations-teaser p {
  margin: 0;
  color: #5f6b7a;
  font-size: 0.88rem;
  font-weight: 950;
}

.recommendations-button {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(420px, calc(100% - 78px));
  min-height: 46px;
  color: #fff;
  border-radius: 7px;
  background: #082f37;
  box-shadow: 0 16px 34px rgba(8, 47, 55, 0.24);
  font-size: 0.92rem;
  font-weight: 950;
  text-decoration: none;
  transform: translateX(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.recommendations-button:hover {
  background: #061d23;
  box-shadow: 0 20px 40px rgba(8, 47, 55, 0.3);
  transform: translate(-50%, -2px);
}

.recommendations-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 70%);
  pointer-events: none;
}

@media (max-width: 1040px) {
  .next-actions-section.donor-recommendations-section {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding: 58px max(28px, calc(50vw - 360px)) 66px;
  }

  .recommendations-card {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .next-actions-section.donor-recommendations-section {
    padding: 50px 24px 58px;
  }

  .recommendations-copy h2 {
    font-size: 1.7rem;
  }

  .recommendations-card {
    min-height: 430px;
    padding: 14px 14px 82px;
  }

  .recommendations-head {
    grid-template-columns: 34px 1fr;
  }

  .recommendations-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .recommendations-button {
    width: calc(100% - 36px);
    bottom: 32px;
  }
}

/* Footer lock: keep the final site footer dark and structured on every page. */
html body .site-footer {
  display: block !important;
  scroll-margin-top: 96px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #fff !important;
  background:
    radial-gradient(circle at 12% 22%, rgba(213, 28, 130, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(37, 171, 197, 0.16), transparent 28%),
    linear-gradient(135deg, #062f36 0%, #041f28 100%) !important;
}

html body .site-footer .footer-inner {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1fr) !important;
  grid-template-areas:
    "contact links"
    "bottom bottom" !important;
  gap: 76px 92px !important;
  width: min(1252px, calc(100% - 88px)) !important;
  min-height: 560px !important;
  margin: 0 auto !important;
  padding: 92px 0 72px !important;
  color: inherit !important;
}

html body .site-footer .footer-contact {
  grid-area: contact !important;
  display: grid !important;
  align-content: start !important;
  gap: 0 !important;
  color: inherit !important;
}

html body .site-footer .footer-brand {
  display: inline-flex !important;
  gap: 12px !important;
  align-items: center !important;
  width: max-content !important;
  color: #fff !important;
}

html body .site-footer .footer-contact h2 {
  max-width: 520px !important;
  margin: 86px 0 0 !important;
  color: #fff !important;
}

html body .site-footer .footer-contact p {
  max-width: 520px !important;
  color: rgba(255, 255, 255, 0.68) !important;
}

html body .site-footer .footer-email {
  color: #fff !important;
}

html body .site-footer .footer-links {
  grid-area: links !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 46px !important;
  align-content: start !important;
  padding-top: 126px !important;
  color: inherit !important;
}

html body .site-footer .footer-links div {
  display: grid !important;
  gap: 17px !important;
  color: inherit !important;
  font-weight: 650 !important;
}

html body .site-footer .footer-links h3 {
  color: #fff !important;
}

html body .site-footer a {
  color: rgba(255, 255, 255, 0.86) !important;
}

html body .site-footer .footer-bottom {
  grid-area: bottom !important;
  display: flex !important;
  justify-content: flex-start !important;
  gap: 44px !important;
  width: 100% !important;
  margin-top: 34px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 1120px) {
  html body .site-footer .footer-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "contact"
      "links"
      "bottom" !important;
    gap: 48px !important;
    width: min(840px, calc(100% - 56px)) !important;
    padding: 76px 0 64px !important;
  }

  html body .site-footer .footer-contact h2 {
    margin-top: 56px !important;
  }

  html body .site-footer .footer-links {
    padding-top: 0 !important;
  }
}

@media (max-width: 760px) {
  html body .site-footer .footer-inner {
    width: calc(100% - 48px) !important;
    min-height: auto !important;
    padding: 58px 0 52px !important;
  }

  html body .site-footer .footer-contact h2 {
    margin-top: 46px !important;
    font-size: 2.45rem !important;
  }

  html body .site-footer .footer-links {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  html body .site-footer .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}

/* Reverted benefits block: keep the previous two-column map view. */
html body .benefits-map-section {
  width: 100%;
  padding: 84px max(80px, calc(50vw - 626px)) 96px;
  overflow: visible;
  background: #fff;
}

html body .benefits-map-section::before,
html body .benefits-map-section::after {
  display: none;
}

html body .benefits-map-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

html body .benefits-map-table {
  width: min(1240px, 100%);
  margin: 0 auto;
}

@media (max-width: 1040px) {
  html body .benefits-map-section {
    padding: 68px max(28px, calc(50vw - 360px)) 78px;
  }
}

@media (max-width: 760px) {
  html body .benefits-map-section {
    padding: 58px 28px 68px;
  }

  html body .benefits-map-heading {
    text-align: left;
  }
}

/* Marketing header should not cover section headlines while scrolling. */
html body .site-header {
  position: relative;
  top: auto;
}

/* Minimal audience use cases block. */
html body .audience-usecases-section {
  padding: 86px max(80px, calc(50vw - 626px)) 96px;
  overflow: hidden;
  background: #fbfcfd;
}

html body .audience-usecases-section::before,
html body .audience-usecases-section::after,
html body .audience-usecase-card::after {
  display: none;
}

html body .audience-usecases-head {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(360px, 0.46fr);
  gap: 64px;
  align-items: end;
  width: min(1252px, 100%);
  margin: 0 auto 42px;
}

html body .audience-usecases-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -28px;
  color: #d51c82;
}

html body .audience-usecases-head h2 {
  max-width: 760px;
  margin: 0;
  color: #172331;
  font-size: clamp(2.2rem, 3.15vw, 3.45rem);
  line-height: 1.07;
}

html body .audience-usecases-head p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: #5e6b7d;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

html body .audience-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

html body .audience-usecase-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  min-height: 360px;
  padding: 28px 26px 24px;
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

html body .audience-usecase-card::before {
  display: block;
  height: 2px;
  background: #0e9ab6;
}

html body .audience-usecase-card.is-agency::before {
  background: #d51c82;
}

html body .audience-usecase-card.is-founder::before {
  background: #ff744f;
}

html body .audience-usecase-card.is-studio::before {
  background: #34b56a;
}

html body .audience-card-top {
  gap: 10px;
  min-height: 34px;
}

html body .audience-role-icon {
  width: 30px;
  height: 30px;
  color: #0b738a;
  border: 1px solid #c9e5eb;
  border-radius: 8px;
  background: #f7fcfd;
  font-size: 0.78rem;
  box-shadow: none;
}

html body .is-agency .audience-role-icon {
  color: #fff;
  border-color: #d51c82;
  background: #d51c82;
  box-shadow: 0 12px 24px rgba(213, 28, 130, 0.16);
}

html body .is-founder .audience-role-icon {
  color: #fff;
  border-color: #ff744f;
  background: #ff744f;
  box-shadow: 0 12px 24px rgba(255, 116, 79, 0.14);
}

html body .is-studio .audience-role-icon {
  color: #208755;
  border-color: #cfead9;
  background: #f8fdf9;
  box-shadow: none;
}

html body .audience-card-top small {
  color: #748092;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

html body .audience-usecase-card h3 {
  margin: 30px 0 0;
  color: #172331;
  font-size: 1.42rem;
  line-height: 1.08;
}

html body .audience-usecase-card p {
  margin: 14px 0 0;
  color: #5d6a7a;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
}

html body .audience-result {
  margin-top: 22px;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid #e5ebf1;
  border-radius: 0;
  background: transparent !important;
}

html body .audience-result span {
  margin-bottom: 7px;
  color: #7b8796;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

html body .audience-result strong {
  color: #172331;
  font-size: 0.95rem;
  line-height: 1.34;
}

html body .audience-card-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 16px;
  color: #d51c82;
  font-size: 0.94rem;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

html body .audience-card-link:hover {
  color: #a91162;
}

html body .audience-usecase-card::before {
  display: none;
}

@media (max-width: 1120px) {
  html body .audience-usecases-section {
    padding: 74px max(28px, calc(50vw - 420px)) 84px;
  }

  html body .audience-usecases-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  html body .audience-usecases-head .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  html body .audience-usecases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html body .audience-usecases-section {
    padding: 58px 24px 70px;
  }

  html body .audience-usecases-head h2 {
    font-size: 2.2rem;
  }

  html body .audience-usecases-grid {
    grid-template-columns: 1fr;
  }

html body .audience-usecase-card {
    min-height: auto;
    padding: 22px 20px;
  }
}

/* Pricing page: SparkToro pricing structure adapted for PainRadar. */
.pricing-page {
  background: #fff;
}

.pricing-hero,
.pricing-cards-section,
.pricing-assurance,
.pricing-compare-section,
.pricing-report-section,
.pricing-faq-section,
.pricing-cta-section {
  width: min(1252px, calc(100% - 56px));
  margin: 0 auto;
}

.pricing-hero {
  padding: 72px 0 42px;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  color: #172331;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.pricing-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #5d6a7a;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.55;
}

.billing-switch {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 50px;
  margin-top: 34px;
  padding: 7px 14px;
  border: 1px solid #dfe6ee;
  border-radius: 999px;
  background: #fbfcfd;
  color: #5d6a7a;
  font-size: 0.86rem;
  font-weight: 850;
}

.billing-switch label {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
  cursor: pointer;
}

.billing-switch input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.billing-switch i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #172331;
  pointer-events: none;
}

.billing-switch i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 180ms ease;
}

.billing-switch input:checked + i::after {
  transform: translateX(24px);
}

.billing-switch strong {
  margin-left: 6px;
  color: #0b738a;
}

.pricing-cards-section {
  padding: 32px 0 64px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 520px;
  padding: 24px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
}

.pricing-card.is-featured {
  border-color: #172331;
  box-shadow: 0 24px 64px rgba(23, 35, 49, 0.12);
}

.pricing-ribbon {
  position: absolute;
  top: -13px;
  left: 22px;
  min-height: 27px;
  padding: 6px 10px;
  color: #fff;
  border-radius: 999px;
  background: #172331;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card-head h3 {
  margin: 0;
  color: #172331;
  font-size: 1.65rem;
}

.pricing-card-head p {
  min-height: 78px;
  margin: 12px 0 0;
  color: #5d6a7a;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
}

.pricing-price {
  margin-top: 22px;
}

.pricing-price strong {
  color: #172331;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: 1;
}

.pricing-price span {
  display: block;
  margin-top: 8px;
  color: #6b7686;
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-button {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin-top: 22px;
  color: #fff;
  border-radius: 8px;
  background: #172331;
  font-weight: 950;
}

.pricing-card:not(.is-featured) .pricing-button {
  color: #172331;
  border: 1px solid #dfe6ee;
  background: #fbfcfd;
}

.pricing-includes {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e5ebf1;
}

.pricing-includes span {
  color: #7b8796;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-includes ul {
  display: grid;
  gap: 11px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-includes li {
  position: relative;
  padding-left: 20px;
  color: #172331;
  font-weight: 750;
  line-height: 1.35;
}

.pricing-includes li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0e9ab6;
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: #6b7686;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
}

.pricing-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 0 78px;
}

.pricing-assurance article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fbfcfd;
}

.pricing-assurance span,
.pricing-report-grid span {
  color: #d51c82;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-assurance strong {
  display: block;
  margin-top: 14px;
  color: #172331;
  font-size: 1.1rem;
}

.pricing-assurance p {
  margin: 8px 0 0;
  color: #5d6a7a;
  font-weight: 650;
  line-height: 1.5;
}

.pricing-compare-section,
.pricing-report-section,
.pricing-faq-section {
  padding: 78px 0;
  border-top: 1px solid #e4eaf0;
}

.pricing-section-heading {
  display: grid;
  grid-template-columns: minmax(420px, 0.75fr) minmax(360px, 0.48fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 36px;
}

.pricing-section-heading > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -44px;
}

.pricing-section-heading.is-narrow {
  display: block;
  max-width: 740px;
}

.pricing-section-heading.is-narrow > .eyebrow {
  margin-bottom: 12px;
}

.pricing-section-heading h2,
.pricing-cta-section h2 {
  margin: 0;
  color: #172331;
  font-size: clamp(2.05rem, 3vw, 3.45rem);
  line-height: 1.06;
}

.pricing-section-heading p:not(.eyebrow) {
  margin: 0;
  color: #5d6a7a;
  font-weight: 650;
  line-height: 1.55;
}

.pricing-compare-wrap {
  overflow-x: auto;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
}

.pricing-compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e5ebf1;
  color: #172331;
  font-weight: 750;
  text-align: left;
}

.pricing-compare-table thead th {
  color: #d51c82;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-compare-table tr:last-child th,
.pricing-compare-table tr:last-child td {
  border-bottom: 0;
}

.pricing-compare-table td {
  color: #5d6a7a;
}

.pricing-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-report-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
}

.pricing-report-grid h3 {
  margin: 28px 0 0;
  color: #172331;
  font-size: 1.32rem;
}

.pricing-report-grid p {
  margin: 10px 0 0;
  color: #5d6a7a;
  font-weight: 650;
  line-height: 1.5;
}

.pricing-faq-list {
  display: grid;
  gap: 10px;
}

.pricing-faq-list details {
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
}

.pricing-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #172331;
  font-size: 1.05rem;
  font-weight: 950;
}

.pricing-faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: #5d6a7a;
  font-weight: 650;
  line-height: 1.5;
}

.pricing-cta-section {
  margin-bottom: 96px;
  padding: 58px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 154, 182, 0.08), rgba(213, 28, 130, 0.06)),
    #fbfcfd;
}

.pricing-cta-section h2 {
  max-width: 920px;
}

.pricing-cta-section div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 1120px) {
  .pricing-cards,
  .pricing-assurance,
  .pricing-report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-section-heading > .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .pricing-hero,
  .pricing-cards-section,
  .pricing-assurance,
  .pricing-compare-section,
  .pricing-report-section,
  .pricing-faq-section,
  .pricing-cta-section {
    width: calc(100% - 48px);
  }

  .pricing-hero h1 {
    font-size: 2.75rem;
  }

  .billing-switch {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 8px;
  }

  .pricing-cards,
  .pricing-assurance,
  .pricing-report-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-cta-section {
    padding: 34px 24px;
  }
}

/* Product page: SparkToro-inspired structure adapted for PainRadar. */
html body .product-page {
  background: #fff;
}

.product-story-hero,
.product-data-section,
.product-workflow-section,
.product-features-section,
.product-value-section,
.product-cta-section {
  width: min(1252px, calc(100% - 56px));
  margin: 0 auto;
}

.product-story-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
  min-height: 640px;
  padding: 72px 0 86px;
}

.product-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #172331;
  font-size: clamp(3rem, 5.2vw, 5.55rem);
  line-height: 0.98;
}

.product-hero-copy > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #5d6a7a;
  font-size: 1.16rem;
  font-weight: 650;
  line-height: 1.55;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.product-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 42px 0 0;
}

.product-hero-metrics div {
  min-height: 84px;
  padding: 16px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fbfcfd;
}

.product-hero-metrics dt {
  margin: 0;
  color: #0e9ab6;
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1;
}

.product-hero-metrics dd {
  margin: 8px 0 0;
  color: #6b7686;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-report-preview {
  display: block;
  color: inherit;
}

.product-report-window {
  overflow: hidden;
  border: 1px solid #d7e1eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(34, 49, 67, 0.12);
}

.product-report-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid #dce4ec;
  background: #edf3f8;
}

.product-report-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.product-report-bar span:nth-child(1) { background: #ff604c; }
.product-report-bar span:nth-child(2) { background: #f1b638; }
.product-report-bar span:nth-child(3) { background: #40b963; }

.product-report-bar strong {
  margin-left: 8px;
  color: #687688;
  font-size: 0.84rem;
  font-weight: 950;
}

.product-report-body {
  padding: 28px;
  background: #fbfaf7;
}

.product-report-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.product-report-top span,
.product-features-grid span,
.product-value-head span {
  color: #d51c82;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-report-top button {
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  border: 0;
  border-radius: 7px;
  background: #172331;
  font-size: 0.82rem;
  font-weight: 950;
}

.product-report-body h2 {
  margin: 18px 0 20px;
  color: #172331;
  font-size: 1.9rem;
  line-height: 1.1;
}

.product-report-chart {
  display: flex;
  gap: 14px;
  align-items: end;
  height: 214px;
  padding: 22px 18px 18px;
  border: 1px solid #dce4ec;
  border-radius: 8px;
  background:
    linear-gradient(#e9eef4 1px, transparent 1px) 0 0 / 100% 34px,
    #fff;
}

.product-report-chart i {
  flex: 1;
  min-width: 24px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #189cb9, #8bd7e4);
}

.product-report-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-report-cards div {
  min-height: 72px;
  padding: 14px;
  border: 1px solid #dce4ec;
  border-radius: 8px;
  background: #fff;
}

.product-report-cards span {
  display: block;
  color: #6c7888;
  font-size: 0.75rem;
  font-weight: 900;
}

.product-report-cards strong {
  display: block;
  margin-top: 6px;
  color: #172331;
  font-size: 1.38rem;
}

.product-data-section,
.product-workflow-section,
.product-features-section,
.product-value-section {
  padding: 88px 0;
  border-top: 1px solid #e4eaf0;
}

.product-section-heading {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(360px, 0.46fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}

.product-section-heading > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -44px;
}

.product-section-heading.is-narrow {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: 0;
}

.product-section-heading.is-narrow > .eyebrow {
  margin-bottom: 12px;
}

.product-section-heading h2,
.product-cta-section h2 {
  margin: 0;
  color: #172331;
  font-size: clamp(2.15rem, 3.2vw, 3.65rem);
  line-height: 1.05;
}

.product-section-heading p:not(.eyebrow) {
  margin: 0;
  color: #5d6a7a;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.product-data-grid,
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-data-grid article,
.product-features-grid article {
  min-height: 248px;
  padding: 24px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
}

.product-data-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0b738a;
  border: 1px solid #c9e5eb;
  border-radius: 8px;
  background: #f7fcfd;
  font-weight: 950;
}

.product-data-grid h3,
.product-workflow h3,
.product-features-grid h3 {
  margin: 28px 0 0;
  color: #172331;
  font-size: 1.45rem;
  line-height: 1.1;
}

.product-data-grid p,
.product-workflow p,
.product-features-grid p {
  margin: 14px 0 0;
  color: #5d6a7a;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.5;
}

.product-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
}

.product-workflow article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid #e5ebf1;
}

.product-workflow article:last-child {
  border-right: 0;
}

.product-workflow span {
  color: #d51c82;
  font-size: 0.82rem;
  font-weight: 950;
}

.product-features-grid article {
  min-height: 220px;
}

.product-features-grid h3 {
  margin-top: 34px;
}

.product-value-table {
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background: #fff;
}

.product-value-head,
.product-value-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 94px;
  padding: 0 28px;
  border-bottom: 1px solid #e5ebf1;
}

.product-value-row:last-child {
  border-bottom: 0;
}

.product-value-row strong {
  color: #172331;
  font-size: 1.08rem;
}

.product-value-row p {
  margin: 0;
  color: #5d6a7a;
  font-weight: 650;
  line-height: 1.5;
}

.product-cta-section {
  margin-bottom: 96px;
  padding: 58px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 154, 182, 0.08), rgba(213, 28, 130, 0.06)),
    #fbfcfd;
}

.product-cta-section h2 {
  max-width: 900px;
}

.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 1120px) {
  .product-story-hero,
  .product-section-heading {
    grid-template-columns: 1fr;
  }

  .product-story-hero {
    min-height: auto;
  }

  .product-data-grid,
  .product-features-grid,
  .product-workflow {
    grid-template-columns: 1fr;
  }

  .product-workflow article {
    border-right: 0;
    border-bottom: 1px solid #e5ebf1;
  }

  .product-workflow article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .product-story-hero,
  .product-data-section,
  .product-workflow-section,
  .product-features-section,
  .product-value-section,
  .product-cta-section {
    width: calc(100% - 48px);
  }

  .product-story-hero {
    padding: 52px 0 66px;
  }

  .product-hero-copy h1 {
    font-size: 2.8rem;
  }

  .product-hero-metrics,
  .product-report-cards,
  .product-value-head,
  .product-value-row {
    grid-template-columns: 1fr;
  }

  .product-value-head,
  .product-value-row {
    gap: 10px;
    align-items: start;
    padding: 22px;
  }

  .product-report-chart {
    gap: 8px;
    height: 170px;
  }

  .product-cta-section {
    padding: 34px 24px;
  }
}

/* API / CRM page: developer-style hero adapted from SparkToro API direction. */
.api-page {
  overflow: hidden;
  background: #fff;
}

.api-subnav {
  display: flex;
  justify-content: center;
  gap: 58px;
  width: min(1100px, calc(100% - 40px));
  min-height: 58px;
  margin: 0 auto;
  padding: 16px 0 10px;
  border-top: 1px solid #edf1f5;
  color: #8a93a1;
  font-size: 0.86rem;
  font-weight: 750;
}

.api-subnav a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.api-subnav span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.7;
}

.api-subnav a:nth-child(2) span {
  border-radius: 50%;
}

.api-subnav a:nth-child(3) span,
.api-subnav a:nth-child(4) span {
  transform: rotate(45deg);
}

.api-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(400px, 0.72fr);
  gap: 48px;
  align-items: center;
  width: min(1100px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  padding: 78px 0 118px;
}

.api-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(rgba(226, 233, 238, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 233, 238, 0.42) 1px, transparent 1px),
    radial-gradient(circle at 72% 28%, rgba(40, 178, 198, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 245, 250, 0.86), rgba(246, 252, 255, 0.96));
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto;
}

.api-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #10212c;
  font-size: clamp(3.1rem, 4.25vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.api-hero-copy h1 span {
  display: block;
  width: auto;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(90deg, #d51c82, #ff7248 45%, #0f9fb8 88%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
}

.api-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 0;
  color: #566475;
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.58;
}

.api-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  color: #10212c;
  border: 1px solid #aeb8c4;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 850;
}

.api-code-window {
  overflow: hidden;
  border: 1px solid rgba(9, 41, 49, 0.22);
  border-radius: 14px;
  background: #092f38;
  box-shadow: 0 34px 70px rgba(9, 41, 49, 0.22);
  transform: rotate(-0.6deg);
}

.api-hero .api-code-window {
  max-width: 540px;
  justify-self: end;
}

.api-code-window .window-bar {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.api-code-window .window-bar strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
}

.api-code-window pre {
  margin: 0;
  padding: 28px 32px 32px;
  color: #d9f5ec;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.72;
  white-space: pre-wrap;
}

.api-code-window .comment {
  color: rgba(255, 255, 255, 0.42);
}

.api-code-window .method,
.api-code-window .key {
  color: #ffcf66;
}

.api-code-window .string {
  color: #5fe3bc;
}

.api-data-section,
.api-workflow-section,
.api-integration-section {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.api-data-section {
  position: relative;
  padding: 106px 0 92px;
}

.api-data-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background: #f6f0e6;
  border-top: 1px solid #e8dfd1;
  border-bottom: 1px solid #e8dfd1;
}

.api-section-heading {
  display: grid;
  grid-template-columns: minmax(380px, 0.8fr) minmax(320px, 0.5fr);
  gap: 76px;
  align-items: end;
  margin-bottom: 38px;
}

.api-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -46px;
  color: #0e8fa8;
}

.api-section-heading h2,
.api-workflow-copy h2 {
  margin: 0;
  color: #10212c;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: 1.02;
}

.api-section-heading p,
.api-workflow-copy p {
  margin: 0;
  color: #566475;
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.58;
}

.api-endpoint-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.api-endpoint-grid article {
  min-height: 264px;
  padding: 24px;
  border: 1px solid #d9d3c8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.api-endpoint-grid span,
.api-integration-section span {
  color: #d51c82;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.api-endpoint-grid h3,
.api-integration-section h3 {
  margin: 36px 0 0;
  color: #10212c;
  font-size: 1.52rem;
  line-height: 1.08;
}

.api-endpoint-grid p,
.api-integration-section p {
  margin: 16px 0 0;
  color: #566475;
  font-weight: 650;
  line-height: 1.5;
}

.api-workflow-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(480px, 1fr);
  gap: 72px;
  align-items: center;
  padding: 104px 0 34px;
}

.api-workflow-copy .eyebrow {
  color: #d51c82;
}

.api-workflow-copy p {
  max-width: 480px;
  margin-top: 22px;
}

.api-action-board {
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 13px;
  background: #fbfaf7;
  box-shadow: 0 24px 60px rgba(17, 24, 32, 0.1);
}

.api-board-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 24px;
}

.api-board-body aside {
  display: grid;
  gap: 10px;
  align-content: start;
}

.api-board-body b {
  margin-bottom: 4px;
  color: #10212c;
}

.api-board-body aside span {
  padding: 12px 13px;
  color: #7d8795;
  border-radius: 6px;
  background: #fff;
  font-weight: 750;
}

.api-board-body aside .active {
  color: #fff;
  background: #111820;
}

.api-board-body > div {
  display: grid;
  gap: 12px;
}

.api-task {
  min-height: 74px;
  padding: 20px 24px;
  color: #fff;
  border-left: 6px solid #26a7c1;
  border-radius: 8px;
  background: #111820;
  font-size: 1.05rem;
  font-weight: 950;
}

.api-task.yellow {
  border-left-color: #ffcf66;
}

.api-task.green {
  border-left-color: #60c783;
}

.api-integration-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 42px 0 98px;
}

.api-integration-section article {
  min-height: 238px;
  padding: 28px;
  border: 1px solid #dfe6ee;
  border-radius: 8px;
}

.api-integration-section article:nth-child(1) {
  background: #ebfaed;
}

.api-integration-section article:nth-child(2) {
  background: #fff3c7;
}

.api-integration-section article:nth-child(3) {
  background: #fde7df;
}

@media (max-width: 1120px) {
  .api-subnav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .api-hero,
  .api-section-heading,
  .api-workflow-section {
    grid-template-columns: 1fr;
  }

  .api-hero {
    gap: 46px;
    min-height: auto;
  }

  .api-section-heading .eyebrow {
    margin-bottom: 12px;
  }

  .api-endpoint-grid,
  .api-integration-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .api-subnav,
  .api-hero,
  .api-data-section,
  .api-workflow-section,
  .api-integration-section {
    width: calc(100% - 48px);
  }

  .api-subnav {
    gap: 24px;
    min-height: 54px;
    padding-top: 12px;
    font-size: 0.78rem;
  }

  .api-hero {
    padding: 54px 0 72px;
  }

  .api-hero-copy h1 {
    font-size: 2.72rem;
  }

  .api-actions {
    align-items: stretch;
  }

  .api-actions a {
    width: 100%;
  }

  .api-code-window {
    transform: none;
  }

  .api-code-window pre {
    padding: 22px;
    font-size: 0.7rem;
  }

  .api-data-section {
    padding: 70px 0 66px;
  }

  .api-section-heading {
    display: block;
  }

  .api-section-heading h2,
  .api-workflow-copy h2 {
    font-size: 2.28rem;
  }

  .api-section-heading p {
    margin-top: 18px;
  }

  .api-endpoint-grid,
  .api-workflow-section,
  .api-integration-section,
  .api-board-body {
    grid-template-columns: 1fr;
  }

  .api-workflow-section {
    gap: 34px;
    padding-top: 70px;
  }
}

/* More expressive header buttons. */
html body .site-header {
  min-height: 76px;
}

html body .brand-logo {
  font-size: 1.08rem;
}

html body .brand-logo::before {
  width: 12px;
  height: 12px;
  margin-right: 7px;
}

html body .nav-links {
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  font-weight: 820;
}

html body .nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #202936;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

html body .nav-links a::after {
  display: none;
}

html body .nav-links a:hover,
html body .nav-links a.is-active {
  color: var(--ink);
  background: #f0fbfd;
  border-color: #bde3ed;
  box-shadow: 0 10px 24px rgba(13, 134, 164, 0.12);
  transform: translateY(-1px);
}

html body .header-button {
  min-height: 46px;
  padding: 0 23px;
  color: #fff;
  border: 1px solid #0a829e;
  border-radius: 12px;
  background: linear-gradient(180deg, #24abc9, #0c829e);
  box-shadow:
    0 13px 28px rgba(13, 134, 164, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 0.92rem;
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

html body .header-button::after {
  content: "→";
  margin-left: 8px;
  font-weight: 950;
  transition: transform 160ms ease;
}

html body .header-button:hover,
html body .header-button.is-active {
  color: #fff;
  border-color: #076f89;
  background: linear-gradient(180deg, #1198b8, #076f89);
  box-shadow:
    0 16px 34px rgba(13, 134, 164, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

html body .header-button:hover::after,
html body .header-button.is-active::after {
  transform: translateX(3px);
}

/* Dark analytics homepage theme: Linear/Attio/PostHog-inspired, adapted for PainRadar. */
body.home-page.dark-analytics-home {
  --ink: #f5f5f7;
  --text: #eef2f7;
  --muted: #9aa4b2;
  --line: rgba(255, 255, 255, 0.12);
  --canvas: #0b0b12;
  --soft: rgba(255, 255, 255, 0.045);
  --deep: #0f121c;
  --cyan: #64d9ff;
  --cyan-dark: #28bce8;
  --pink: #ff3d8b;
  --pink-soft: rgba(255, 61, 139, 0.14);
  --orange: #ff7a4f;
  --green: #4ff0a3;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  color: #f5f5f7;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 61, 139, 0.24), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(99, 102, 241, 0.2), transparent 32%),
    radial-gradient(circle at 52% 54%, rgba(21, 152, 184, 0.12), transparent 34%),
    #0b0b12;
  font-family: "Inter Tight", Inter, Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
}

body.home-page.dark-analytics-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 72%, transparent);
}

body.home-page.dark-analytics-home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(11, 11, 18, 0), #0b0b12 92%);
}

body.home-page.dark-analytics-home .site-header {
  width: min(1260px, calc(100% - 48px));
  min-height: 70px;
  margin-top: 12px;
  padding: 0 12px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(12, 14, 24, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

body.home-page.dark-analytics-home .brand-logo {
  color: #f5f5f7;
  background: none;
  font-size: 1.12rem;
  font-weight: 760;
}

body.home-page.dark-analytics-home .brand-logo::before {
  background: linear-gradient(135deg, #f5f5f7 0 48%, transparent 49%);
}

body.home-page.dark-analytics-home .nav-links a {
  color: rgba(245, 245, 247, 0.72);
  background: transparent;
  border-color: transparent;
}

body.home-page.dark-analytics-home .nav-links a:hover,
body.home-page.dark-analytics-home .nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.home-page.dark-analytics-home .header-button,
body.home-page.dark-analytics-home .primary-action,
body.home-page.dark-analytics-home .proof-cta {
  color: #fff;
  border: 1px solid rgba(255, 61, 139, 0.48);
  background: linear-gradient(135deg, #ff3d8b, #7c3dff);
  box-shadow:
    0 18px 42px rgba(255, 61, 139, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

body.home-page.dark-analytics-home .plain-link {
  color: rgba(245, 245, 247, 0.74);
  text-decoration-color: rgba(245, 245, 247, 0.32);
}

body.home-page.dark-analytics-home .hero.product-hero {
  width: min(1260px, calc(100% - 48px));
  min-height: 790px;
  padding: 96px 0 86px;
}

body.home-page.dark-analytics-home .product-hero::before {
  inset: -190px -120px -80px;
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 61, 139, 0.24), transparent 28%),
    radial-gradient(circle at 72% 28%, rgba(124, 61, 255, 0.3), transparent 30%),
    radial-gradient(circle at 60% 68%, rgba(40, 188, 232, 0.15), transparent 30%);
}

body.home-page.dark-analytics-home .eyebrow {
  color: #ff6cab;
  letter-spacing: 0.08em;
}

body.home-page.dark-analytics-home .hero h1 {
  max-width: 720px;
  color: #f5f5f7;
  font-size: clamp(3.7rem, 6vw, 6rem);
  font-weight: 610;
  line-height: 0.95;
}

body.home-page.dark-analytics-home #hero-title {
  min-height: 0;
}

body.home-page.dark-analytics-home .hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #ff3d8b 0%, #ff7a4f 46%, #8b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

body.home-page.dark-analytics-home .hero-copy p {
  max-width: 640px;
  color: rgba(245, 245, 247, 0.72);
  font-size: 1.08rem;
  font-weight: 520;
}

body.home-page.dark-analytics-home #heroDescription {
  min-height: auto;
}

body.home-page.dark-analytics-home .hero-microcopy {
  max-width: 460px;
  color: rgba(245, 245, 247, 0.48);
  font-size: 0.92rem;
}

body.home-page.dark-analytics-home .hero-report-tabs {
  display: none;
}

body.home-page.dark-analytics-home .hero-visual {
  position: relative;
  isolation: isolate;
}

body.home-page.dark-analytics-home .hero-visual::before {
  content: "";
  position: absolute;
  inset: -84px -74px;
  z-index: -1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(100, 217, 255, 0.18) 0 1px, transparent 1px 58px),
    conic-gradient(from 245deg, transparent, rgba(255, 61, 139, 0.28), transparent 42%);
  filter: blur(0.2px);
  opacity: 0.7;
  animation: radarSweep 9s linear infinite;
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

body.home-page.dark-analytics-home .product-window,
body.home-page.dark-analytics-home .sample-window,
body.home-page.dark-analytics-home .recommendations-card,
body.home-page.dark-analytics-home .benefits-map-table,
body.home-page.dark-analytics-home .audience-usecase-card {
  color: #f5f5f7;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(13, 15, 26, 0.84);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
}

body.home-page.dark-analytics-home .hero-window {
  rotate: 0deg;
  transform: perspective(1100px) rotateY(-6deg) rotateX(4deg);
}

body.home-page.dark-analytics-home .hero-window:hover {
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg) translateY(-4px);
}

body.home-page.dark-analytics-home .window-bar {
  color: rgba(245, 245, 247, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

body.home-page.dark-analytics-home .report-screen {
  min-height: 360px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    rgba(8, 10, 18, 0.8);
  background-size: 28px 28px;
}

body.home-page.dark-analytics-home .screen-label,
body.home-page.dark-analytics-home .sample-panel-title {
  color: #ff6cab;
}

body.home-page.dark-analytics-home .screen-top h2,
body.home-page.dark-analytics-home .chart-title strong,
body.home-page.dark-analytics-home .mini-grid strong {
  color: #f5f5f7;
}

body.home-page.dark-analytics-home .report-action-label {
  color: #fff;
  border-color: rgba(255, 61, 139, 0.45);
  background: rgba(255, 61, 139, 0.16);
}

body.home-page.dark-analytics-home .chart-card,
body.home-page.dark-analytics-home .mini-grid div,
body.home-page.dark-analytics-home .sample-panel,
body.home-page.dark-analytics-home .recommendations-item,
body.home-page.dark-analytics-home .recommendations-teaser,
body.home-page.dark-analytics-home .audience-result {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
}

body.home-page.dark-analytics-home .bar-chart i {
  background: linear-gradient(180deg, #64d9ff, rgba(255, 61, 139, 0.76));
  box-shadow: 0 0 26px rgba(100, 217, 255, 0.22);
}

body.home-page.dark-analytics-home .proof-band,
body.home-page.dark-analytics-home .next-actions-section.donor-recommendations-section,
body.home-page.dark-analytics-home .benefits-map-section,
body.home-page.dark-analytics-home .audience-usecases-section {
  position: relative;
  color: #f5f5f7;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 61, 255, 0.16), transparent 30%),
    radial-gradient(circle at 14% 70%, rgba(255, 61, 139, 0.12), transparent 28%),
    rgba(11, 11, 18, 0.48);
}

body.home-page.dark-analytics-home .proof-band::before,
body.home-page.dark-analytics-home .next-actions-section.donor-recommendations-section::before,
body.home-page.dark-analytics-home .benefits-map-section::before,
body.home-page.dark-analytics-home .audience-usecases-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

body.home-page.dark-analytics-home .proof-band h2,
body.home-page.dark-analytics-home .recommendations-copy h2,
body.home-page.dark-analytics-home .benefits-map-heading h2,
body.home-page.dark-analytics-home .audience-usecases-head h2 {
  color: #f5f5f7;
  font-weight: 590;
}

body.home-page.dark-analytics-home .proof-band h2 strong,
body.home-page.dark-analytics-home .recommendations-copy h2 strong {
  color: #fff;
}

body.home-page.dark-analytics-home .proof-band p,
body.home-page.dark-analytics-home .recommendations-copy p,
body.home-page.dark-analytics-home .benefits-map-heading p,
body.home-page.dark-analytics-home .audience-usecases-head p:not(.eyebrow),
body.home-page.dark-analytics-home .recommendations-price-note,
body.home-page.dark-analytics-home .proof-note {
  color: rgba(245, 245, 247, 0.62);
}

body.home-page.dark-analytics-home .check-list li {
  color: rgba(245, 245, 247, 0.82);
}

body.home-page.dark-analytics-home .check-list li::before {
  color: #64d9ff;
  background: rgba(100, 217, 255, 0.12);
}

body.home-page.dark-analytics-home .sample-button,
body.home-page.dark-analytics-home .recommendations-button {
  color: #fff;
  background: linear-gradient(135deg, #ff3d8b, #7c3dff);
  box-shadow: 0 18px 42px rgba(255, 61, 139, 0.22);
}

body.home-page.dark-analytics-home .sample-stat span,
body.home-page.dark-analytics-home .sample-line-card span,
body.home-page.dark-analytics-home .chart-title span,
body.home-page.dark-analytics-home .mini-grid span,
body.home-page.dark-analytics-home .recommendations-item p,
body.home-page.dark-analytics-home .benefit-map-cell p,
body.home-page.dark-analytics-home .audience-usecase-card p {
  color: rgba(245, 245, 247, 0.64);
}

body.home-page.dark-analytics-home .sample-stat strong,
body.home-page.dark-analytics-home .recommendations-head strong,
body.home-page.dark-analytics-home .recommendations-item h3,
body.home-page.dark-analytics-home .benefits-map-header div,
body.home-page.dark-analytics-home .audience-usecase-card h3,
body.home-page.dark-analytics-home .audience-result strong {
  color: #f5f5f7;
}

body.home-page.dark-analytics-home .recommendations-head {
  border-color: rgba(183, 255, 111, 0.18);
  background: linear-gradient(90deg, rgba(183, 255, 111, 0.1), rgba(100, 217, 255, 0.07));
}

body.home-page.dark-analytics-home .recommendations-icon {
  border-color: rgba(183, 255, 111, 0.6);
}

body.home-page.dark-analytics-home .recommendations-head em {
  color: #b7ff6f;
  border-color: rgba(183, 255, 111, 0.4);
  background: rgba(183, 255, 111, 0.08);
}

body.home-page.dark-analytics-home .recommendations-item-warning {
  border-color: rgba(255, 122, 79, 0.3);
  background: rgba(255, 122, 79, 0.075);
}

body.home-page.dark-analytics-home .benefits-map-table {
  overflow: hidden;
}

body.home-page.dark-analytics-home .benefits-map-header {
  background: rgba(255, 255, 255, 0.04);
}

body.home-page.dark-analytics-home .benefit-map-row {
  border-top-color: rgba(255, 255, 255, 0.09);
}

body.home-page.dark-analytics-home .benefit-icon,
body.home-page.dark-analytics-home .audience-role-icon {
  color: #081018;
  background: #64d9ff;
  box-shadow: 0 14px 36px rgba(100, 217, 255, 0.15);
}

body.home-page.dark-analytics-home .benefit-arrow {
  color: #ff3d8b;
  border-color: rgba(255, 61, 139, 0.42);
  background: rgba(255, 61, 139, 0.1);
}

body.home-page.dark-analytics-home .audience-usecases-grid {
  width: min(1160px, 100%);
}

body.home-page.dark-analytics-home .audience-usecase-card {
  min-height: 390px;
}

body.home-page.dark-analytics-home .audience-usecase-card::before {
  display: block;
  height: 2px;
  margin: -28px -26px 26px;
  background: linear-gradient(90deg, #64d9ff, transparent);
}

body.home-page.dark-analytics-home .audience-usecase-card.is-agency::before {
  background: linear-gradient(90deg, #ff3d8b, transparent);
}

body.home-page.dark-analytics-home .audience-usecase-card.is-founder::before {
  background: linear-gradient(90deg, #ff7a4f, transparent);
}

body.home-page.dark-analytics-home .audience-usecase-card.is-agency .audience-role-icon {
  color: #fff;
  background: #ff3d8b;
}

body.home-page.dark-analytics-home .audience-usecase-card.is-founder .audience-role-icon {
  color: #fff;
  background: #ff7a4f;
}

body.home-page.dark-analytics-home .audience-card-link {
  color: #ff6cab;
}

body.home-page.dark-analytics-home .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 61, 139, 0.15), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(100, 217, 255, 0.12), transparent 28%),
    #070910;
}

body.home-page.dark-analytics-home .footer-brand-mark {
  background: conic-gradient(#64d9ff, #ff3d8b, #ff7a4f, #7c3dff, #64d9ff);
}

@media (max-width: 1040px) {
  body.home-page.dark-analytics-home .hero.product-hero {
    min-height: auto;
    padding-top: 70px;
  }

  body.home-page.dark-analytics-home .hero h1 {
    font-size: 3.6rem;
  }

  body.home-page.dark-analytics-home .hero-window {
    transform: none;
  }
}

@media (max-width: 760px) {
  body.home-page.dark-analytics-home .site-header,
  body.home-page.dark-analytics-home .hero.product-hero {
    width: calc(100% - 28px);
  }

  body.home-page.dark-analytics-home .site-header {
    margin-top: 8px;
    border-radius: 14px;
  }

  body.home-page.dark-analytics-home .hero h1 {
    font-size: 3rem;
  }

  body.home-page.dark-analytics-home .audience-usecase-card {
    min-height: auto;
  }
}

body.home-page.dark-analytics-home .hero.product-hero {
  color: #f5f5f7;
  background: transparent;
}

body.home-page.dark-analytics-home .hero.product-hero h1,
body.home-page.dark-analytics-home .hero.product-hero #hero-title {
  min-height: 0;
}

body.home-page.dark-analytics-home .hero.product-hero h1 {
  max-width: 740px;
  color: #f5f5f7;
  font-size: clamp(3.7rem, 6vw, 6rem);
  font-weight: 610;
  line-height: 0.95;
}

body.home-page.dark-analytics-home .hero.product-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #ff3d8b 0%, #ff7a4f 46%, #8b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

body.home-page.dark-analytics-home .hero.product-hero .hero-copy p {
  min-height: 0;
  color: rgba(245, 245, 247, 0.7);
}

body.home-page.dark-analytics-home .hero.product-hero .hero-copy .hero-microcopy {
  color: rgba(245, 245, 247, 0.48);
}

body.home-page.dark-analytics-home .hero.product-hero .primary-action {
  background: linear-gradient(135deg, #ff3d8b, #7c3dff);
  box-shadow:
    0 18px 42px rgba(255, 61, 139, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

body.home-page.dark-analytics-home .hero.product-hero .hero-window {
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.home-page.dark-analytics-home .hero.product-hero .window-bar {
  background: rgba(255, 255, 255, 0.06);
}

body.home-page.dark-analytics-home .hero.product-hero .report-screen {
  max-height: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    rgba(8, 10, 18, 0.82);
  background-size: 28px 28px;
}

body.home-page.dark-analytics-home .hero.product-hero .chart-card {
  background: rgba(255, 255, 255, 0.055);
}

body.home-page.dark-analytics-home .hero.product-hero .bar-chart i {
  background: linear-gradient(180deg, #64d9ff, rgba(255, 61, 139, 0.76));
}

/* PainRadar homepage redesign inspired by Mindbox/Roistat. */
body.ru-saas-redesign {
  --pr-ink: #24283a;
  --pr-muted: #70798c;
  --pr-soft: #eef3f7;
  --pr-card: #ffffff;
  --pr-line: #dbe4ee;
  --pr-blue: #2585f7;
  --pr-blue-dark: #1769d2;
  --pr-green: #35a865;
  --pr-pink: #e3268a;
  --pr-navy: #11182a;
  --pr-radius: 22px;
  margin: 0;
  color: var(--pr-ink);
  background:
    radial-gradient(circle at 78% 20%, rgba(37, 133, 247, 0.13), transparent 26%),
    radial-gradient(circle at 12% 8%, rgba(53, 168, 101, 0.11), transparent 24%),
    linear-gradient(180deg, #f3f6f9 0%, #eef3f7 52%, #ffffff 100%);
  font-family:
    Inter, "Inter Tight", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

body.ru-saas-redesign::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(36, 40, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 40, 58, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 66%);
}

body.ru-saas-redesign a {
  color: inherit;
}

body.ru-saas-redesign *,
body.ru-saas-redesign *::before,
body.ru-saas-redesign *::after {
  box-sizing: border-box;
}

.pr-header,
.pr-hero,
.pr-stats,
.pr-system,
.pr-action,
.pr-map,
.pr-audience,
.pr-team,
.pr-footer {
  width: min(1280px, calc(100% - 80px));
  margin-right: auto;
  margin-left: auto;
}

.pr-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  margin-top: 14px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(219, 228, 238, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(31, 47, 75, 0.08);
  backdrop-filter: blur(18px);
}

.pr-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--pr-ink);
  font-size: 1.04rem;
  font-weight: 860;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.pr-brand-mark {
  width: 15px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 28% 100%, 0 100%);
  background: linear-gradient(135deg, #11182a 0%, var(--pr-blue) 58%, var(--pr-pink) 100%);
}

.pr-nav {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.pr-nav a,
.pr-header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  color: #384055;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

.pr-nav a:hover {
  color: var(--pr-blue-dark);
  background: #edf5ff;
}

.pr-header-cta {
  justify-self: end;
  color: #fff;
  background: var(--pr-blue);
  box-shadow: 0 12px 28px rgba(37, 133, 247, 0.22);
}

.pr-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1fr);
  gap: 70px;
  align-items: center;
  min-height: 820px;
  padding: 92px 0 88px;
}

.pr-eyebrow {
  margin: 0 0 22px;
  color: var(--pr-blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pr-hero h1,
.pr-section-copy h2,
.pr-map-head h2,
.pr-audience-head h2,
.pr-team h2 {
  margin: 0;
  color: var(--pr-ink);
  font-weight: 720;
  letter-spacing: -0.062em;
}

.pr-hero h1 {
  max-width: 680px;
  font-size: clamp(4.3rem, 6.1vw, 6.6rem);
  line-height: 0.92;
}

.pr-hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #243259 0%, var(--pr-blue) 46%, var(--pr-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.pr-hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #5e687b;
  font-size: 1.17rem;
  font-weight: 560;
  line-height: 1.56;
}

.pr-search-card {
  width: min(560px, 100%);
  margin-top: 34px;
  padding: 9px;
  border: 1px solid rgba(37, 133, 247, 0.22);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 20px 50px rgba(31, 60, 96, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.pr-search-card label {
  display: block;
  padding: 8px 12px 4px;
  color: #748096;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-search-card div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.pr-search-card input {
  min-width: 0;
  height: 56px;
  padding: 0 14px;
  color: var(--pr-ink);
  border: 0;
  border-radius: 13px;
  background: #f4f8fc;
  font: inherit;
  font-size: 1rem;
  font-weight: 720;
  outline: none;
}

.pr-search-card a,
.pr-link-cta,
.pr-header-cta {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.pr-search-card a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  padding: 0 26px;
  color: #fff;
  border-radius: 13px;
  background: var(--pr-blue);
  box-shadow: 0 12px 24px rgba(37, 133, 247, 0.2);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.pr-search-card a:hover,
.pr-link-cta:hover,
.pr-header-cta:hover {
  transform: translateY(-2px);
}

.pr-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pr-hero-meta span {
  padding: 9px 13px;
  color: #536074;
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  font-weight: 780;
}

.pr-hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.pr-hero-visual::before,
.pr-hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(37, 133, 247, 0.16);
  border-radius: 50%;
}

.pr-hero-visual::before {
  width: 720px;
  height: 720px;
  background:
    radial-gradient(circle, rgba(37, 133, 247, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.16);
}

.pr-hero-visual::after {
  width: 510px;
  height: 510px;
  border-style: dashed;
}

.pr-dashboard {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(183, 199, 218, 0.95);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.9));
  box-shadow:
    0 34px 86px rgba(35, 52, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transform: rotate(-1.5deg);
}

.pr-dashboard-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  color: #536074;
  border-bottom: 1px solid var(--pr-line);
  background: #edf4fb;
}

.pr-window-dots {
  display: inline-flex;
  gap: 7px;
}

.pr-window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b57;
}

.pr-window-dots i:nth-child(2) {
  background: #ffc04d;
}

.pr-window-dots i:nth-child(3) {
  background: #42bd6b;
}

.pr-dashboard-top strong {
  font-size: 0.88rem;
  font-weight: 850;
}

.pr-dashboard-top span {
  padding: 8px 11px;
  color: var(--pr-green);
  border-radius: 10px;
  background: #e9f8ef;
  font-size: 0.75rem;
  font-weight: 860;
}

.pr-dashboard-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 18px 0;
}

.pr-dashboard-tabs span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #7b8799;
  border: 1px solid #dfe8f2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
}

.pr-dashboard-tabs .is-active {
  color: #fff;
  border-color: var(--pr-navy);
  background: var(--pr-navy);
}

.pr-dashboard-layout {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 18px 14px;
}

.pr-source-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.pr-source-list span {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 11px;
  color: #6e7789;
  border: 1px solid #e1e8f1;
  border-radius: 12px;
  background: #f7fafc;
  font-size: 0.78rem;
  font-weight: 780;
}

.pr-source-list b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  color: var(--pr-blue-dark);
  background: #e4f1ff;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.pr-source-list em {
  color: #8c97a8;
  font-style: normal;
  font-weight: 900;
}

.pr-source-list .is-active {
  color: #fff;
  background: var(--pr-navy);
}

.pr-source-list .is-active b {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.pr-source-list .is-active em {
  color: rgba(255, 255, 255, 0.72);
}

.pr-live-panel {
  display: grid;
  gap: 10px;
}

.pr-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pr-kpi-row div {
  padding: 10px 11px 9px;
  border: 1px solid #dfe8f2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
}

.pr-kpi-row span,
.pr-kpi-row em {
  display: block;
  color: #7c8798;
  font-size: 0.64rem;
  font-weight: 860;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pr-kpi-row strong {
  display: block;
  margin-top: 4px;
  color: var(--pr-ink);
  font-size: 1.28rem;
  line-height: 1;
}

.pr-kpi-row em {
  margin-top: 4px;
  color: var(--pr-green);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}

.pr-chart-panel {
  position: relative;
  min-height: 202px;
  overflow: hidden;
  padding: 16px 18px 14px;
  border: 1px solid #e0e8f1;
  border-radius: 18px;
  background:
    linear-gradient(rgba(36, 40, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 40, 58, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
}

.pr-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #727d90;
  font-size: 0.9rem;
  font-weight: 760;
}

.pr-chart-head strong {
  color: var(--pr-blue-dark);
  font-size: 1.2rem;
}

.pr-bars {
  height: 112px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: end;
  margin-top: 20px;
  padding: 0 8px 6px;
  border-bottom: 2px solid #d6e3ef;
}

.pr-bars i {
  display: block;
  height: var(--h);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #2c8df8 0%, #81d7eb 100%);
  box-shadow: 0 10px 24px rgba(37, 133, 247, 0.16);
  transform-origin: bottom;
  animation: prBarRise 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: var(--d);
}

.pr-trend-line {
  position: absolute;
  right: 18px;
  bottom: 34px;
  left: 18px;
  width: calc(100% - 36px);
  height: 104px;
  overflow: visible;
  pointer-events: none;
}

.pr-trend-line path {
  fill: none;
  stroke: rgba(227, 38, 138, 0.88);
  stroke-linecap: round;
  stroke-width: 3;
  filter: drop-shadow(0 8px 12px rgba(227, 38, 138, 0.2));
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: prDrawLine 1.3s 420ms ease forwards;
}

.pr-trend-line circle {
  fill: #fff;
  stroke: var(--pr-pink);
  stroke-width: 3;
}

.pr-signal-table {
  display: grid;
  gap: 8px;
}

.pr-signal-table div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid #e0e8f1;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.84);
}

.pr-signal-table span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  border-radius: 9px;
  background: var(--pr-blue);
  font-size: 0.7rem;
  font-weight: 900;
}

.pr-signal-table strong {
  min-width: 0;
  color: var(--pr-ink);
  font-size: 0.8rem;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-signal-table em {
  color: #687386;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

@keyframes prBarRise {
  from {
    transform: scaleY(0.08);
    opacity: 0.45;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes prDrawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.pr-action-row {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin: 0 18px 18px;
  padding: 14px 16px;
  border: 1px solid #dfe9f3;
  border-radius: 18px;
  background: #f8fbfe;
}

.pr-action-row span {
  display: block;
  color: #778196;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-action-row strong {
  display: block;
  margin-top: 6px;
  color: var(--pr-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.pr-action-row em {
  flex: 0 0 auto;
  padding: 10px 12px;
  color: var(--pr-green);
  border-radius: 999px;
  background: #e8f8ef;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 860;
}

.pr-orbit-card {
  position: absolute;
  z-index: 3;
  min-width: 170px;
  padding: 16px 18px;
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(37, 54, 86, 0.13);
  backdrop-filter: blur(12px);
}

.pr-orbit-card-left {
  left: 4%;
  bottom: 18%;
}

.pr-orbit-card-right {
  top: 12%;
  right: -1%;
}

.pr-orbit-card span {
  display: block;
  color: #788397;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-orbit-card strong {
  display: block;
  margin-top: 6px;
  color: var(--pr-ink);
  font-size: 1.12rem;
}

.pr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: -30px;
  margin-bottom: 88px;
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius);
  background: #fff;
  box-shadow: 0 26px 70px rgba(31, 47, 75, 0.08);
}

.pr-stats div {
  padding: 28px 32px;
  border-right: 1px solid var(--pr-line);
}

.pr-stats div:last-child {
  border-right: 0;
}

.pr-stats strong {
  display: block;
  color: var(--pr-blue);
  font-size: 2.3rem;
  line-height: 1;
}

.pr-stats span {
  display: block;
  margin-top: 8px;
  color: #687487;
  font-size: 0.92rem;
  font-weight: 760;
}

.pr-system,
.pr-action,
.pr-map,
.pr-audience,
.pr-team {
  margin-bottom: 104px;
}

.pr-system,
.pr-action {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 54px;
  align-items: center;
  padding: 54px 62px;
  border: 1px solid var(--pr-line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 80px rgba(35, 52, 82, 0.08);
}

.pr-section-copy h2,
.pr-map-head h2,
.pr-audience-head h2,
.pr-team h2 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.pr-system .pr-section-copy h2 {
  max-width: 620px;
  font-size: clamp(2.55rem, 3.45vw, 4rem);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.pr-system .pr-section-copy p:not(.pr-eyebrow) {
  max-width: 560px;
  font-size: 1.02rem;
  font-weight: 500;
}

.pr-section-copy p:not(.pr-eyebrow),
.pr-map-head p:not(.pr-eyebrow),
.pr-audience-head p:not(.pr-eyebrow),
.pr-team p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--pr-muted);
  font-size: 1.07rem;
  font-weight: 560;
  line-height: 1.58;
}

.pr-link-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 0 22px;
  color: #fff;
  border-radius: 14px;
  background: var(--pr-blue);
  box-shadow: 0 18px 38px rgba(37, 133, 247, 0.2);
  font-weight: 850;
  text-decoration: none;
}

.pr-report-preview {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid #d8e3ef;
  border-radius: 26px;
  background:
    linear-gradient(rgba(36, 40, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 40, 58, 0.035) 1px, transparent 1px),
    #f7fbff;
  background-size: 30px 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pr-report-preview::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(37, 133, 247, 0.11);
  pointer-events: none;
}

.pr-report-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.pr-report-toolbar span,
.pr-report-toolbar em {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #748096;
  border: 1px solid #dfe8f2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 850;
  font-style: normal;
}

.pr-report-toolbar .is-active {
  color: #fff;
  border-color: var(--pr-blue);
  background: var(--pr-blue);
}

.pr-report-toolbar em {
  margin-left: auto;
  color: var(--pr-green);
  background: #eaf8ef;
}

.pr-report-kpis {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pr-report-kpis div {
  padding: 12px 14px;
  border: 1px solid #dce7f2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.pr-report-kpis span {
  display: block;
  color: #788397;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.pr-report-kpis strong {
  display: block;
  margin-top: 8px;
  color: var(--pr-ink);
  font-size: 1.56rem;
  line-height: 1;
}

.pr-report-kpis em {
  display: block;
  margin-top: 5px;
  color: var(--pr-green);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.pr-report-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #dce7f2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.pr-report-left {
  display: grid;
  gap: 10px;
  align-content: center;
}

.pr-donut {
  width: 112px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 42%, transparent 43%),
    conic-gradient(var(--pr-blue) 0 58%, var(--pr-pink) 58% 82%, var(--pr-green) 82% 100%);
  box-shadow: inset 0 0 0 1px rgba(36, 40, 58, 0.08);
}

.pr-mini-legend {
  display: grid;
  gap: 4px;
}

.pr-mini-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #6b7588;
  font-size: 0.72rem;
  font-weight: 760;
}

.pr-mini-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pr-blue);
}

.pr-mini-legend span:nth-child(2) i {
  background: var(--pr-pink);
}

.pr-mini-legend span:nth-child(3) i {
  background: var(--pr-green);
}

.pr-source-bars {
  display: grid;
  gap: 8px;
  align-content: center;
}

.pr-source-bars div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px 78px;
  gap: 10px;
  align-items: center;
}

.pr-source-bars span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pr-blue), #8bd6ef);
}

.pr-source-bars strong {
  color: #596579;
  font-size: 0.8rem;
}

.pr-source-bars em {
  color: #8a95a7;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.pr-hot-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.pr-hot-list h3 {
  margin: 0 0 2px;
  color: #707b8f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-hot-list div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 5px 9px;
  border: 1px solid #dfe8f2;
  border-radius: 12px;
  background: #f8fbfe;
}

.pr-hot-list span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  border-radius: 8px;
  background: var(--pr-blue);
  font-size: 0.68rem;
  font-weight: 900;
}

.pr-hot-list strong {
  min-width: 0;
  color: var(--pr-ink);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-hot-list em {
  color: #687386;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.pr-report-next {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid #dbe6f1;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(37, 133, 247, 0.08), rgba(53, 168, 101, 0.08));
}

.pr-report-next span {
  display: block;
  color: #748096;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-report-next strong {
  display: block;
  margin-top: 5px;
  color: var(--pr-ink);
  font-size: 0.95rem;
  line-height: 1.32;
}

.pr-action {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 133, 247, 0.35), transparent 28%),
    radial-gradient(circle at 82% 88%, rgba(227, 38, 138, 0.23), transparent 26%),
    var(--pr-navy);
}

.pr-action .pr-section-copy h2,
.pr-action .pr-section-copy p,
.pr-action .pr-eyebrow {
  color: #fff;
}

.pr-action .pr-section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.pr-action-board {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--pr-ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  transform: rotate(-1deg);
}

.pr-action-board-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid #e3ebf3;
  background: #f4f8fc;
}

.pr-action-board-head span {
  color: #7c8798;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pr-action-board-head strong {
  font-size: 1.55rem;
}

.pr-action-board-head em {
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 10px 13px;
  color: var(--pr-blue-dark);
  border: 1px solid rgba(37, 133, 247, 0.25);
  border-radius: 12px;
  background: #e6f2ff;
  font-style: normal;
  font-weight: 880;
}

.pr-action-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
}

.pr-action-columns article {
  min-height: 230px;
  padding: 18px;
  border: 1px solid #dce6f1;
  border-top: 4px solid var(--pr-blue);
  border-radius: 18px;
  background: #fff;
}

.pr-action-columns article:nth-child(2) {
  border-top-color: var(--pr-green);
}

.pr-action-columns .is-warning {
  border-top-color: var(--pr-pink);
  background: #fff6fb;
}

.pr-action-columns small {
  display: inline-flex;
  padding: 7px 9px;
  color: #647188;
  border-radius: 999px;
  background: #edf3f8;
  font-weight: 850;
}

.pr-action-columns h3 {
  margin: 22px 0 12px;
  font-size: 1.35rem;
}

.pr-action-columns p {
  margin: 0;
  color: #677386;
  font-weight: 650;
  line-height: 1.45;
}

.pr-map {
  position: relative;
  padding: 86px 0 26px;
}

.pr-map::before {
  content: "";
  position: absolute;
  top: 118px;
  right: -120px;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(37, 128, 237, 0.13);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 128, 237, 0.12), transparent 62%);
}

.pr-map-head,
.pr-audience-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 34px;
}

.pr-map-head .pr-eyebrow,
.pr-audience-head .pr-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -38px;
}

.pr-map-head h2 {
  max-width: 820px;
}

.pr-map-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pr-map-card,
.pr-audience-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pr-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 62px rgba(31, 47, 75, 0.08);
}

.pr-audience-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--pr-blue);
}

.pr-audience-grid article:nth-child(2)::before {
  background: var(--pr-pink);
}

.pr-map-card {
  --card-accent: var(--pr-blue);
  --card-accent-2: #78d4e7;
  display: grid;
  grid-template-rows: 172px 1fr;
  min-height: 430px;
  isolation: isolate;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.pr-map-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 42%, var(--pr-line));
  box-shadow: 0 30px 74px rgba(31, 47, 75, 0.13);
  transform: translateY(-4px);
}

.pr-map-card--search,
.pr-map-card--local {
  --card-accent: var(--pr-green);
  --card-accent-2: #d7f3bf;
}

.pr-map-card--influence,
.pr-map-card--pain {
  --card-accent: var(--pr-pink);
  --card-accent-2: #ffb4d9;
}

.pr-map-card--anti {
  --card-accent: #101722;
  --card-accent-2: #ff775c;
}

.pr-map-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, color-mix(in srgb, var(--card-accent) 34%, transparent), transparent 30%),
    linear-gradient(145deg, #2a2d36, #151a23);
}

.pr-map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}

.pr-map-visual::after {
  content: "";
  position: absolute;
  width: 158px;
  height: 158px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-accent) 22%, transparent);
  filter: blur(24px);
}

.pr-map-visual > * {
  position: absolute;
  z-index: 1;
}

.pr-map-visual--stack i {
  width: 112px;
  height: 66px;
  border-radius: 10px;
  background: #545c6d;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  transform: translateX(-18px) rotate(-9deg) skewY(-6deg);
}

.pr-map-visual--stack i:nth-child(2) {
  background: #6b7282;
  transform: translate(-8px, 7px) rotate(-9deg) skewY(-6deg);
}

.pr-map-visual--stack i:nth-child(3) {
  background: #8790a0;
  transform: translate(2px, 14px) rotate(-9deg) skewY(-6deg);
}

.pr-map-visual--stack b {
  width: 112px;
  height: 66px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--card-accent), var(--card-accent-2));
  box-shadow: 0 18px 38px rgba(32, 184, 112, 0.24);
  transform: translate(16px, 20px) rotate(-9deg) skewY(-6deg);
}

.pr-map-visual--stack b::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 48px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid rgba(16, 23, 34, 0.42);
}

.pr-map-visual--nodes i {
  width: 74px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--card-accent) 84%, #fff);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.pr-map-visual--nodes i:nth-child(1) {
  transform: translate(-64px, -24px);
}

.pr-map-visual--nodes i:nth-child(2) {
  width: 66px;
  background: #596273;
  transform: translate(48px, -34px);
}

.pr-map-visual--nodes i:nth-child(3) {
  width: 66px;
  background: #6c7482;
  transform: translate(58px, 34px);
}

.pr-map-visual--nodes b {
  width: 150px;
  height: 94px;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-right: 0;
  border-bottom: 0;
  border-radius: 24px 0 0;
  transform: translate(8px, 12px) rotate(-7deg);
}

.pr-map-visual--cube i {
  width: 118px;
  height: 68px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--card-accent-2), var(--card-accent));
  box-shadow: inset 0 -16px 0 rgba(16, 23, 34, 0.22);
  transform: translateY(22px) rotateX(56deg) rotateZ(-34deg);
}

.pr-map-visual--cube i:nth-child(2),
.pr-map-visual--cube i:nth-child(3) {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  box-shadow: none;
  transform: none;
}

.pr-map-visual--cube i:nth-child(2) {
  transform: translate(-20px, -12px);
}

.pr-map-visual--cube i:nth-child(3) {
  transform: translate(28px, -6px);
}

.pr-map-visual--cube b {
  width: 112px;
  height: 20px;
  background: #e9eef6;
  transform: translateY(52px) skewX(-34deg);
}

.pr-map-visual--chat i {
  width: 92px;
  height: 70px;
  border-radius: 22px 22px 6px 22px;
  background: var(--card-accent);
  transform: translate(-24px, -8px);
}

.pr-map-visual--chat i:nth-child(2) {
  width: 72px;
  height: 54px;
  border-radius: 18px 18px 18px 4px;
  background: #6b7282;
  transform: translate(44px, 26px);
}

.pr-map-visual--chat b {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 18px 0 0 rgba(255, 255, 255, 0.8), 36px 0 0 rgba(255, 255, 255, 0.62);
  transform: translate(-36px, -2px) scale(0.28);
}

.pr-map-visual--local i {
  width: 38px;
  height: 64px;
  border-radius: 9px 9px 3px 3px;
  background: var(--card-accent);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.18);
  transform: translate(-46px, 16px);
}

.pr-map-visual--local i:nth-child(2) {
  height: 86px;
  background: #7fd1df;
  transform: translate(0, 5px);
}

.pr-map-visual--local i:nth-child(3) {
  height: 52px;
  background: #d8edc0;
  transform: translate(46px, 22px);
}

.pr-map-visual--local b {
  width: 96px;
  height: 96px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px 999px 999px 8px;
  transform: translateY(-10px) rotate(-45deg);
}

.pr-map-visual--anti i {
  width: 112px;
  height: 112px;
  border: 12px solid #fff;
  border-radius: 999px;
  opacity: 0.9;
}

.pr-map-visual--anti b {
  width: 144px;
  height: 14px;
  border-radius: 999px;
  background: var(--card-accent-2);
  box-shadow: 0 18px 40px rgba(255, 119, 92, 0.28);
  transform: rotate(-34deg);
}

.pr-map-card-body {
  display: grid;
  align-content: start;
  min-height: 258px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    color-mix(in srgb, var(--card-accent) 9%, #fff);
}

.pr-map-card-body span {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 24%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--card-accent) 62%, #566175);
  background: color-mix(in srgb, var(--card-accent) 8%, #fff);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-map-card-body p {
  margin: 24px 0 0;
  color: var(--pr-ink);
  font-size: 1.2rem;
  font-weight: 740;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.pr-map-card-body strong {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(211, 222, 235, 0.82);
  color: #687386;
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1.48;
}

.pr-map-card-body strong::before {
  content: "Что делать";
  display: block;
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--card-accent) 66%, #566175);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pr-audience {
  padding-top: 30px;
}

.pr-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pr-audience-grid article {
  min-height: 310px;
  padding: 26px;
  background: #fff;
}

.pr-audience-grid small {
  display: inline-flex;
  color: #6e7a90;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pr-audience-grid h3 {
  margin: 46px 0 18px;
  color: var(--pr-ink);
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.pr-audience-grid p {
  margin: 0;
  color: #687386;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.56;
}

.pr-team {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 62px;
  border-radius: 34px;
  background: #eef4f8;
}

.pr-team img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(31, 47, 75, 0.14);
}

.pr-footer {
  display: block;
  min-height: 440px;
  margin-bottom: 24px;
  padding: 58px 64px 34px;
  color: #fff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 133, 247, 0.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(53, 168, 101, 0.13), transparent 24%),
    var(--pr-navy);
}

.pr-footer .pr-brand {
  color: #fff;
}

.pr-footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: 80px;
}

.pr-footer-contact h2 {
  max-width: 420px;
  margin: 46px 0 0;
  color: #fff;
  font-size: clamp(2.25rem, 3.5vw, 4rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.pr-footer-contact p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.02rem;
  font-weight: 560;
  line-height: 1.55;
}

.pr-footer-email {
  display: inline-flex;
  margin-top: 22px;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.pr-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  padding-top: 10px;
}

.pr-footer-links h3 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pr-footer-links div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.pr-footer a {
  color: inherit;
  font-weight: 780;
  text-decoration: none;
}

.pr-footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 620;
  line-height: 1.38;
}

.pr-footer a:hover {
  color: #fff;
}

.pr-footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pr-footer-bottom span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 720;
}

@media (max-width: 1100px) {
  .pr-header,
  .pr-hero,
  .pr-stats,
  .pr-system,
  .pr-action,
  .pr-map,
  .pr-audience,
  .pr-team,
  .pr-footer {
    width: min(100% - 38px, 1280px);
  }

  .pr-hero,
  .pr-system,
  .pr-action,
  .pr-team {
    grid-template-columns: 1fr;
  }

  .pr-hero {
    gap: 36px;
  }

  .pr-map-head,
  .pr-audience-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pr-map-head .pr-eyebrow,
  .pr-audience-head .pr-eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 820px) {
  .pr-header {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .pr-nav,
  .pr-header-cta {
    justify-self: start;
  }

  .pr-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .pr-nav a,
  .pr-header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .pr-hero {
    min-height: auto;
    padding-top: 64px;
    overflow: hidden;
  }

  .pr-hero h1 {
    font-size: clamp(2.58rem, 11.5vw, 3.35rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .pr-hero-lead {
    font-size: 1rem;
  }

  .pr-hero-visual {
    min-height: 460px;
    overflow: hidden;
  }

  .pr-dashboard {
    width: 100%;
  }

  .pr-hero-visual::before {
    width: 320px;
    height: 320px;
  }

  .pr-hero-visual::after {
    width: 260px;
    height: 260px;
  }

  .pr-search-card div,
  .pr-stats,
  .pr-dashboard-grid,
  .pr-dashboard-layout,
  .pr-kpi-row,
  .pr-report-kpis,
  .pr-report-body,
  .pr-action-columns,
  .pr-map-table,
  .pr-audience-grid {
    grid-template-columns: 1fr;
  }

  .pr-dashboard-tabs {
    flex-wrap: wrap;
  }

  .pr-dashboard-layout {
    padding: 14px;
  }

  .pr-source-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pr-source-list span {
    grid-template-columns: auto 1fr;
  }

  .pr-source-list em {
    display: none;
  }

  .pr-chart-panel {
    min-height: 210px;
  }

  .pr-bars {
    height: 118px;
  }

  .pr-signal-table div {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .pr-signal-table em {
    display: none;
  }

  .pr-report-toolbar {
    flex-wrap: wrap;
  }

  .pr-report-toolbar em {
    margin-left: 0;
  }

  .pr-source-bars div,
  .pr-hot-list div {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .pr-source-bars div {
    grid-template-columns: minmax(0, 1fr) 72px;
  }

  .pr-source-bars em,
  .pr-hot-list em {
    display: none;
  }

  .pr-system,
  .pr-action,
  .pr-team {
    padding: 28px;
    border-radius: 24px;
  }

  .pr-section-copy h2,
  .pr-map-head h2,
  .pr-audience-head h2,
  .pr-team h2 {
    font-size: 2.35rem;
  }

  .pr-orbit-card {
    display: none;
  }

  .pr-dashboard {
    transform: none;
  }

  .pr-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 28px;
  }

  .pr-footer-main,
  .pr-footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pr-footer-contact h2 {
    margin-top: 30px;
  }

  .pr-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 42px;
  }
}

/* Final subpage polish: keep the old page CSS from bleeding into the new design. */
body.pr-subpage .brand-logo::before {
  content: none;
  display: none;
}

body.pr-subpage .site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  width: min(1280px, calc(100% - 80px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(219, 228, 238, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(31, 47, 75, 0.08);
  backdrop-filter: blur(18px);
}

body.pr-subpage .brand-logo {
  color: var(--pr-ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

body.pr-subpage .nav-links a.is-active {
  color: var(--pr-blue-dark);
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px rgba(37, 133, 247, 0.16);
}

body.pr-subpage .pricing-hero {
  text-align: left;
}

body.pr-subpage .pricing-hero h1,
body.pr-subpage .pricing-hero > p {
  max-width: 680px;
}

body.pr-subpage .pricing-hero::after {
  content: none;
  display: none;
}

body.pr-subpage .pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.42fr);
  gap: 72px;
  align-items: center;
  min-height: 560px;
  padding: 72px 64px;
  text-align: left;
}

body.pr-subpage .pricing-hero-copy {
  max-width: 760px;
}

body.pr-subpage .pricing-hero-copy .eyebrow {
  margin-bottom: 20px;
}

body.pr-subpage .pricing-hero-copy h1 {
  max-width: 730px;
}

body.pr-subpage .pricing-hero-copy > p {
  max-width: 700px;
}

body.pr-subpage .pricing-hero-panel {
  position: relative;
  width: 100%;
  max-width: 410px;
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(191, 207, 226, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(37, 133, 247, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    0 28px 70px rgba(31, 47, 75, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

body.pr-subpage .pricing-hero-panel::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(53, 168, 101, 0.12), transparent 42%),
    radial-gradient(circle at 92% 92%, rgba(227, 38, 138, 0.1), transparent 36%);
}

body.pr-subpage .pricing-hero-panel > span {
  display: inline-flex;
  margin: 4px 4px 16px;
  color: #748096;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.pr-subpage .pricing-hero-panel div {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(219, 228, 238, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

body.pr-subpage .pricing-hero-panel div + div {
  margin-top: 10px;
}

body.pr-subpage .pricing-hero-panel .is-accent {
  color: #fff;
  border-color: rgba(37, 133, 247, 0.2);
  background:
    linear-gradient(135deg, var(--pr-blue), #5ebee4);
  box-shadow: 0 16px 34px rgba(37, 133, 247, 0.22);
}

body.pr-subpage .pricing-hero-panel strong {
  font-size: 1.06rem;
  font-weight: 840;
}

body.pr-subpage .pricing-hero-panel b {
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}

body.pr-subpage .pricing-hero-panel em {
  display: block;
  margin: 16px 6px 4px;
  color: #667286;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.45;
}

body.pr-subpage .pricing-card.is-featured .pricing-card-head {
  padding-top: 18px;
}

body.pr-subpage .pricing-card.is-featured .pricing-ribbon {
  top: 18px;
  right: 18px;
}

body.pr-subpage .pricing-card.is-featured .pricing-card-head h3,
body.pr-subpage .pricing-card.is-featured .pricing-price strong,
body.pr-subpage .pricing-card.is-featured .pricing-includes li {
  color: #fff;
}

body.pr-subpage .api-page {
  padding-top: 30px;
}

body.pr-subpage .api-subnav {
  position: sticky;
  top: 96px;
  z-index: 18;
  width: min(1100px, 100%);
  min-height: auto;
  margin: 0 auto 28px;
  padding: 8px;
  border: 1px solid rgba(219, 228, 238, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 42px rgba(31, 47, 75, 0.06);
  backdrop-filter: blur(18px);
}

body.pr-subpage .api-hero {
  min-height: 620px;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 46px;
}

body.pr-subpage .api-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 4.7vw, 5.15rem);
}

body.pr-subpage .product-data-section .product-section-heading,
body.pr-subpage .product-features-section .product-section-heading,
body.pr-subpage .product-value-section .product-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.46fr);
  gap: 28px 72px;
  align-items: start;
  max-width: none;
  margin-bottom: 34px;
}

body.pr-subpage .product-data-section .product-section-heading > .eyebrow,
body.pr-subpage .product-features-section .product-section-heading > .eyebrow,
body.pr-subpage .product-value-section .product-section-heading > .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

body.pr-subpage .product-data-section .product-section-heading h2,
body.pr-subpage .product-features-section .product-section-heading h2,
body.pr-subpage .product-value-section .product-section-heading h2 {
  max-width: 790px;
  font-size: clamp(3rem, 4.5vw, 5.15rem);
  line-height: 0.96;
}

body.pr-subpage .product-data-section .product-section-heading p:not(.eyebrow),
body.pr-subpage .product-features-section .product-section-heading p:not(.eyebrow),
body.pr-subpage .product-value-section .product-section-heading p:not(.eyebrow) {
  max-width: 430px;
  margin: 10px 0 0;
  color: #667286;
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.58;
}

@media (max-width: 900px) {
  body.pr-subpage .product-data-section .product-section-heading,
  body.pr-subpage .product-features-section .product-section-heading,
  body.pr-subpage .product-value-section .product-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.pr-subpage .product-data-section .product-section-heading h2,
  body.pr-subpage .product-features-section .product-section-heading h2,
  body.pr-subpage .product-value-section .product-section-heading h2 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

body.pr-subpage .product-data-section .product-section-heading p:not(.eyebrow),
body.pr-subpage .product-features-section .product-section-heading p:not(.eyebrow),
body.pr-subpage .product-value-section .product-section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 0;
  }
}

@media (max-width: 1100px) {
  body.pr-subpage .pricing-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body.pr-subpage .pricing-hero-panel {
    justify-self: start;
    width: min(420px, 100%);
  }
}

@media (max-width: 820px) {
  body.pr-subpage .site-header {
    width: min(100% - 38px, 1280px);
    grid-template-columns: 1fr;
    padding: 16px;
  }

  body.pr-subpage .api-subnav {
    position: relative;
    top: auto;
    justify-content: flex-start;
  }
}

/* Product page workflow refresh: replaces the old single framed table. */
body.pr-subpage .product-workflow-section.is-modern-flow {
  position: relative;
  margin-top: 92px;
  padding: 76px 64px 70px;
  overflow: hidden;
  border: 1px solid rgba(191, 207, 226, 0.78);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 10%, rgba(37, 133, 247, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(53, 168, 101, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.82));
  box-shadow: 0 28px 80px rgba(31, 47, 75, 0.08);
}

body.pr-subpage .product-workflow-section.is-modern-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 133, 247, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(90deg, rgba(37, 133, 247, 0.035) 1px, transparent 1px) 0 0 / 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(540px, 0.72fr) minmax(330px, 0.36fr);
  gap: 16px 64px;
  align-items: start;
  margin-bottom: 30px;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading > .eyebrow {
  grid-column: 1;
  margin: 0;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading h2 {
  grid-column: 1;
  max-width: 820px;
  font-size: clamp(3rem, 4.15vw, 4.8rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  max-width: 430px;
  margin: 0 0 8px;
  align-self: end;
  color: #667286;
  font-size: 1.06rem;
  font-weight: 560;
  line-height: 1.58;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow::before {
  content: "";
  position: absolute;
  top: 52px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 133, 247, 0.24), rgba(227, 38, 138, 0.22), transparent);
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article {
  position: relative;
  display: flex;
  min-height: 364px;
  padding: 26px;
  flex-direction: column;
  border: 1px solid rgba(191, 207, 226, 0.86);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 84% 18%, rgba(37, 133, 247, 0.12), transparent 38%);
  box-shadow:
    0 24px 62px rgba(31, 47, 75, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article:nth-child(2) {
  transform: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 84% 18%, rgba(227, 38, 138, 0.1), transparent 38%);
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 84% 18%, rgba(53, 168, 101, 0.12), transparent 38%);
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 14px;
  background: var(--pr-blue);
  box-shadow: 0 14px 28px rgba(37, 133, 247, 0.2);
  font-size: 0.95rem;
  font-weight: 880;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article:nth-child(2) span {
  background: var(--pr-pink);
  box-shadow: 0 14px 28px rgba(227, 38, 138, 0.18);
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article:nth-child(3) span {
  background: #35a865;
  box-shadow: 0 14px 28px rgba(53, 168, 101, 0.18);
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow small {
  display: block;
  margin-top: 18px;
  color: #748096;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow h3 {
  max-width: 300px;
  margin: 14px 0 12px;
  color: var(--pr-ink);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow p {
  margin: 0;
  color: #667286;
  font-size: 0.98rem;
  font-weight: 560;
  line-height: 1.5;
}

body.pr-subpage .workflow-mini {
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(219, 228, 238, 0.96);
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.pr-subpage .workflow-mini-search {
  padding: 18px;
}

body.pr-subpage .workflow-mini-search b,
body.pr-subpage .workflow-mini-plan b {
  display: block;
  color: #748096;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.pr-subpage .workflow-mini-search strong {
  display: block;
  margin-top: 8px;
  color: var(--pr-ink);
  font-size: 1.12rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

body.pr-subpage .workflow-mini-search div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

body.pr-subpage .workflow-mini-search em {
  padding: 6px 9px;
  color: var(--pr-blue-dark);
  border: 1px solid rgba(37, 133, 247, 0.17);
  border-radius: 999px;
  background: #edf5ff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 780;
}

body.pr-subpage .workflow-mini-scan {
  display: grid;
  gap: 10px;
  padding: 16px;
}

body.pr-subpage .workflow-mini-scan div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
}

body.pr-subpage .workflow-mini-scan b {
  color: #748096;
  font-size: 0.72rem;
  font-weight: 860;
}

body.pr-subpage .workflow-mini-scan i {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pr-blue), #8ad9ea);
}

body.pr-subpage .workflow-mini-scan div:nth-child(2) i {
  background: linear-gradient(90deg, var(--pr-pink), #ffc0dc);
}

body.pr-subpage .workflow-mini-scan div:nth-child(3) i {
  background: linear-gradient(90deg, #35a865, #b5ead0);
}

body.pr-subpage .workflow-mini-scan em {
  color: var(--pr-ink);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 840;
  text-align: right;
}

body.pr-subpage .workflow-mini-plan {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background:
    radial-gradient(circle at 88% 20%, rgba(53, 168, 101, 0.1), transparent 42%),
    rgba(248, 251, 255, 0.86);
}

body.pr-subpage .workflow-mini-plan strong {
  display: block;
  max-width: 190px;
  margin-top: 7px;
  color: var(--pr-ink);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

body.pr-subpage .workflow-mini-plan em {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: #208252;
  border-radius: 999px;
  background: #e9f8ef;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  body.pr-subpage .product-workflow-section.is-modern-flow {
    padding: 54px 28px 58px;
  }

  body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading,
  body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow {
    grid-template-columns: 1fr;
  }

  body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading h2,
  body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  body.pr-subpage .product-workflow-section.is-modern-flow .product-section-heading p:not(.eyebrow) {
    max-width: 650px;
    margin: 0;
  }

  body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow::before {
    display: none;
  }

  body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article,
  body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article:nth-child(2) {
    min-height: auto;
    transform: none;
  }

  body.pr-subpage .workflow-mini {
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  body.pr-subpage .product-workflow-section.is-modern-flow {
    padding: 40px 20px 44px;
    border-radius: 28px;
  }

  body.pr-subpage .product-workflow-section.is-modern-flow .product-workflow article {
    padding: 22px;
    border-radius: 22px;
  }

  body.pr-subpage .workflow-mini-plan,
  body.pr-subpage .workflow-mini-scan div {
    display: block;
  }

  body.pr-subpage .workflow-mini-scan i {
    display: block;
    margin: 8px 0;
  }

  body.pr-subpage .workflow-mini-scan em {
    display: block;
    text-align: left;
  }

  body.pr-subpage .workflow-mini-plan em {
    display: inline-flex;
    margin-top: 14px;
  }
}

/* Unified page canvas: remove the old white sheet behind subpage content. */
body.ru-saas-redesign {
  background:
    radial-gradient(circle at 78% 18%, rgba(37, 133, 247, 0.14), transparent 28%),
    radial-gradient(circle at 8% 10%, rgba(53, 168, 101, 0.12), transparent 26%),
    linear-gradient(180deg, #f1f6f9 0%, #edf4f8 48%, #eaf2f8 100%) !important;
}

html body.ru-saas-redesign.pr-subpage .product-page,
html body.ru-saas-redesign.pr-subpage .pricing-page,
html body.ru-saas-redesign.pr-subpage .api-page,
html body.ru-saas-redesign .product-page,
html body.ru-saas-redesign .pricing-page,
html body.ru-saas-redesign .api-page {
  background: transparent !important;
}

html body.ru-saas-redesign.pr-subpage .product-page::before,
html body.ru-saas-redesign.pr-subpage .product-page::after,
html body.ru-saas-redesign.pr-subpage .pricing-page::before,
html body.ru-saas-redesign.pr-subpage .pricing-page::after,
html body.ru-saas-redesign.pr-subpage .api-page::before,
html body.ru-saas-redesign.pr-subpage .api-page::after {
  background-color: transparent !important;
}
