:root {
  --bg: #f7f8fb;
  --ink: #101317;
  --muted: #68717d;
  --line: #e0e5eb;
  --panel: #ffffff;
  --soft: #f1f5f6;
  --green: #1fa776;
  --green-dark: #0d7350;
  --blue: #326ee6;
  --coral: #df654f;
  --amber: #d7952d;
  --shadow: 0 28px 80px rgba(20, 30, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfdff 0%, #f7f8fb 45%, #edf3f8 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.site-loaded {
  opacity: 1;
  transform: translateY(0);
}

.site-header,
.hero-copy,
.product-panel,
.section,
.project-map-section,
.partner-section,
.cta-section {
  opacity: 0;
  transform: translateY(16px);
}

body.site-loaded .site-header,
body.site-loaded .hero-copy,
body.site-loaded .product-panel,
body.site-loaded .section,
body.site-loaded .project-map-section,
body.site-loaded .partner-section,
body.site-loaded .cta-section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

body.site-loaded .site-header {
  transition-delay: 60ms;
}

body.site-loaded .hero-copy {
  transition-delay: 130ms;
}

body.site-loaded .product-panel {
  transition-delay: 230ms;
}

.audit-toast {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 60;
  display: grid;
  gap: 4px;
  width: min(430px, calc(100% - 28px));
  padding: 16px 18px;
  background: white;
  border: 1px solid rgba(31, 167, 118, 0.5);
  border-radius: 12px;
  box-shadow:
    0 0 0 5px rgba(31, 167, 118, 0.12),
    0 18px 52px rgba(31, 167, 118, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -24px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.audit-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.audit-toast strong {
  color: var(--ink);
  font-size: 15px;
}

.audit-toast span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 10px 12px;
  background: rgba(247, 249, 252, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 12px 38px rgba(25, 35, 48, 0.07);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
}

.brand,
.nav,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
}

.nav {
  gap: 22px;
  color: #4f5965;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover,
.ghost-link:hover {
  color: var(--green-dark);
}

.header-actions {
  gap: 10px;
}

.ghost-link {
  color: #4f5965;
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: white;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: #273039;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: calc(100vh - 24px);
  margin: -64px auto 0;
  padding: 128px 16px 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(50, 110, 230, 0.08), transparent 32%),
    linear-gradient(245deg, rgba(31, 167, 118, 0.07), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #edf3f8 100%);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 720;
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
}

.hero h1::first-line {
  color: var(--ink);
}

.hero p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  text-align: center;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  gap: 10px 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof b {
  color: var(--ink);
}

.hero {
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(50, 110, 230, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 110, 230, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.72;
  animation: heroGridDrift 18s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.82) 48%, transparent 78%);
  opacity: 0.52;
  transform: translateX(-48%);
  animation: heroLightSweep 9s ease-in-out infinite;
}

.hero-copy,
.product-panel {
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow {
  color: var(--blue);
}

.hero-copy .button {
  background: linear-gradient(135deg, #1f2937, #326ee6);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(50, 110, 230, 0.22);
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
}

.hero-copy .eyebrow {
  color: #a7b7ff;
}

.hero-copy .button {
  background: linear-gradient(135deg, #6d63ff, #9237e8);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(111, 85, 255, 0.32);
}

.premium-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.premium-proof span {
  padding: 8px 12px;
  color: #364152;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(50, 110, 230, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 12px 34px rgba(30, 48, 72, 0.06);
}

.hero-live-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.hero-live-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  color: #425066;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(50, 110, 230, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(30, 48, 72, 0.07);
  animation: liveChipFloat 5.2s ease-in-out infinite;
}

.hero-live-strip span:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-live-strip span:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-live-strip b {
  color: var(--blue);
  font-size: 15px;
}

.product-panel {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
  border-color: rgba(50, 110, 230, 0.14);
  box-shadow: 0 34px 90px rgba(40, 68, 100, 0.14);
}

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

.browser-bar {
  color: #64748b;
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(50, 110, 230, 0.1);
}

.browser-bar b {
  background: #edf4ff;
}

.panel-top strong {
  color: var(--ink);
}

.premium-status span {
  background: #f4f8ff;
  color: #37506f;
  border-color: rgba(50, 110, 230, 0.12);
}

.live-engine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 14px;
  margin-top: 16px;
}

.crawler-preview,
.issue-preview {
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(50, 110, 230, 0.13);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(31, 48, 70, 0.08);
}

.module-head.compact {
  margin-bottom: 12px;
}

.module-head.compact h2 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 18px;
}

.module-head.compact b {
  color: var(--green-dark);
  background: #eaf8f2;
  border: 1px solid rgba(31, 167, 118, 0.18);
}

.crawl-tiles {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
}

.crawl-tiles i {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(180deg, #e8f2ff, #d7e8ff);
  border: 1px solid rgba(50, 110, 230, 0.08);
  animation: crawlTileScan 3.8s ease-in-out infinite;
}

.crawl-tiles i:nth-child(3n) {
  animation-delay: 0.25s;
}

.crawl-tiles i:nth-child(4n) {
  animation-delay: 0.55s;
}

.crawl-tiles i:nth-child(5n) {
  animation-delay: 0.85s;
}

.issue-preview span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.issue-preview h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.15;
}

.issue-preview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-preview li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: #475569;
  background: #f7fbff;
  border: 1px solid rgba(50, 110, 230, 0.09);
  border-radius: 12px;
  animation: issueSlide 5.8s ease-in-out infinite;
}

.issue-preview li:nth-child(2) {
  animation-delay: 0.42s;
}

.issue-preview li:nth-child(3) {
  animation-delay: 0.84s;
}

.issue-preview b {
  color: var(--blue);
  font-size: 11px;
}

.insight-card,
.kpi-card,
.chart-card {
  box-shadow: 0 14px 40px rgba(31, 48, 70, 0.07);
}

.kpi-card.active {
  animation: activeMetricPulse 4.6s ease-in-out infinite;
}

.product-panel,
.kpi-card,
.chart-card,
.insight-card,
.problem-grid article,
.feature-row,
.steps article,
.price-card,
.cta-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.product-panel {
  width: min(980px, calc(100% - 32px));
  margin-top: 46px;
  padding: 0 16px 30px;
  color: var(--ink);
  background: #111925;
  border-color: #273244;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(18px);
  position: relative;
  overflow: hidden;
}

.product-panel::before {
  content: "";
  position: absolute;
  top: -120px;
  right: 8%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(111, 99, 255, 0.18), transparent 62%);
  pointer-events: none;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  margin: 0 -16px 16px;
  padding: 0 16px;
  color: #96a6bb;
  background: #1a2431;
  border-bottom: 1px solid #2a3546;
  border-radius: 10px 10px 0 0;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  background: #ef5555;
  border-radius: 50%;
}

.browser-bar span:nth-child(2) {
  background: #e4b539;
}

.browser-bar span:nth-child(3) {
  background: #3dbb67;
}

.browser-bar b {
  margin: 0 auto;
  padding: 5px 12px;
  background: #233044;
  border-radius: 999px;
  font-size: 12px;
}

.panel-top,
.module-head,
.task-strip,
.feature-visual div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-top strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
  color: white;
}

.panel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.free-analysis-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #a8f0d2;
  background: rgba(31, 167, 118, 0.1);
  border: 1px solid rgba(31, 167, 118, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.free-analysis-button:hover {
  background: rgba(31, 167, 118, 0.16);
}

.muted,
.module-head span,
.task-strip span,
.feature-visual span,
.insight-card span,
.kpi-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-panel .muted,
.product-panel .module-head span,
.product-panel .kpi-card span,
.product-panel .insight-card span {
  color: #8292a8;
}

.product-panel .module-head h2,
.product-panel .kpi-card strong,
.product-panel .insight-card strong {
  color: white;
}

.product-panel .insight-card p {
  color: #9aa8bb;
}

.product-panel .module-head b {
  color: #aebbd0;
}

.period-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(143, 160, 182, 0.14);
  border-radius: 999px;
}

.period-button {
  min-width: 42px;
  height: 32px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.period-button.active {
  color: white;
  background: var(--ink);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.kpi-card {
  padding: 14px;
  background: #172232;
  border-color: #2b384c;
  transition: transform 180ms ease, border-color 180ms ease;
}

.kpi-card:hover,
.insight-card:hover,
.chart-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 240, 210, 0.28);
}

.kpi-card.active {
  border-color: rgba(31, 167, 118, 0.5);
  box-shadow: 0 10px 28px rgba(31, 167, 118, 0.11);
}

.kpi-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.kpi-card em {
  color: var(--green-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.insight-card {
  padding: 14px;
  background: #172232;
  border-color: #2b384c;
  transition: transform 180ms ease, border-color 180ms ease;
}

.insight-card strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
}

.insight-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.insight-card.danger {
  border-color: rgba(223, 101, 79, 0.28);
}

.insight-card.warning {
  border-color: rgba(215, 149, 45, 0.34);
}

.insight-card.success {
  border-color: rgba(31, 167, 118, 0.3);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.compact-dashboard {
  max-width: 100%;
}

.chart-card {
  min-width: 0;
  padding: 16px;
  background: #172232;
  border-color: #2b384c;
  transition: transform 180ms ease, border-color 180ms ease;
}

.premium-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.premium-status span {
  padding: 9px 10px;
  color: #a8f0d2;
  background: rgba(31, 167, 118, 0.08);
  border: 1px solid rgba(31, 167, 118, 0.18);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.chart-card-main {
  grid-row: span 1;
}

.side-stack {
  display: grid;
  gap: 10px;
}

.chart-card-keywords {
  grid-column: 1 / -1;
}

.module-head h2 {
  margin: 4px 0 0;
  font-size: 17px;
}

.module-head.compact h2 {
  font-size: 15px;
}

.module-head b {
  color: var(--ink);
  font-size: 12px;
}

.canvas-wrap {
  position: relative;
  min-height: 160px;
  margin-top: 14px;
}

.canvas-wrap.large {
  height: 230px;
  padding-bottom: 14px;
}

.canvas-wrap.medium {
  height: 175px;
}

.donut-wrap {
  display: grid;
  place-items: center;
  height: 126px;
  min-height: 126px;
  margin-top: 8px;
}

.donut-wrap canvas {
  max-width: 116px;
  max-height: 116px;
}

.donut-wrap strong {
  position: absolute;
  font-size: 24px;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
  background: var(--soft);
  border-radius: 10px;
}

.control-grid label {
  display: grid;
  gap: 8px;
  color: #38414a;
  font-size: 12px;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--ink);
}

.task-strip {
  margin-top: 10px;
  padding: 14px 16px;
  color: white;
  background: #0c111b;
  border-color: #273244;
}

.task-strip strong {
  display: block;
  margin-top: 6px;
}

.task-strip b {
  color: #a8f0d2;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.quality-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(980px, calc(100% - 32px));
  margin: 52px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(35, 45, 58, 0.08);
}

.quality-strip div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.quality-strip strong {
  color: var(--green-dark);
  font-size: 13px;
}

.quality-strip span {
  color: #26313d;
  font-weight: 800;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading h2,
.cta-section h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 720;
  line-height: 1.1;
}

.project-map-section,
.partner-section {
  padding: 86px 0;
  color: white;
  background: #070b13;
}

.project-map-section .section-heading p,
.partner-section .section-heading p {
  color: #9aa8bb;
}

.project-map-section .eyebrow,
.partner-section .eyebrow {
  color: #a7b7ff;
}

.project-map {
  position: relative;
  width: min(860px, calc(100% - 32px));
  margin: 34px auto 0;
  min-height: 420px;
}

.map-root {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 0 auto;
  padding: 15px 28px;
  background: linear-gradient(135deg, #7857ff, #4539e6);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(98, 84, 255, 0.34);
  font-weight: 900;
}

.map-root::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 80px;
  background: linear-gradient(#5d56d9, transparent);
}

.map-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  padding-top: 150px;
}

.map-branches article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
}

.map-branches article::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 18px);
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(transparent, rgba(120, 87, 255, 0.7));
}

.map-branches article:first-child::before {
  transform: rotate(56deg);
  transform-origin: bottom;
  height: 150px;
}

.map-branches article:last-child::before {
  transform: rotate(-56deg);
  transform-origin: bottom;
  height: 150px;
}

.map-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #d8ccff;
  background: rgba(120, 87, 255, 0.16);
  border: 1px solid rgba(167, 128, 255, 0.5);
  border-radius: 10px;
  font-weight: 900;
}

.map-branches h3 {
  margin: 0;
  color: #dbe7f7;
  font-size: 14px;
}

.map-nodes {
  display: flex;
  gap: 10px;
  min-height: 48px;
  align-items: center;
}

.map-nodes b {
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 40px;
  color: #a7e4ff;
  background: rgba(20, 184, 255, 0.12);
  border: 1px solid rgba(20, 184, 255, 0.32);
  border-radius: 9px;
  font-size: 11px;
}

.map-branches em {
  color: #59667c;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.problem-grid,
.steps,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

.problem-grid article,
.steps article,
.price-card {
  padding: 24px;
}

.problem-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-grid article {
  min-height: 206px;
}

.problem-card-red {
  background: #fff1f1 !important;
  border-color: #ffd8d8 !important;
}

.problem-card-yellow {
  background: #fff9df !important;
  border-color: #f4e7ad !important;
}

.problem-card-purple {
  background: #f6efff !important;
  border-color: #e6d9ff !important;
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  font-weight: 900;
}

.problem-card-red .problem-icon {
  color: #e64d4d;
  background: #ffdada;
}

.problem-card-yellow .problem-icon {
  color: #d38a00;
  background: #fff0b4;
}

.problem-card-purple .problem-icon {
  color: #8d4dff;
  background: #eadcff;
}

.problem-pill {
  display: flex;
  width: max-content;
  margin: 38px auto 0;
  padding: 14px 24px;
  color: #5147ee;
  background: #eef1ff;
  border-radius: 999px;
  font-weight: 800;
}

.problem-grid h3,
.steps h3,
.price-card h3,
.feature-row h3 {
  margin: 0;
  font-size: 22px;
}

.problem-grid p,
.steps p,
.price-card p,
.feature-row p,
.feature-visual p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-section,
.workflow,
.pricing {
  border-top: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: #f4f7f6;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-row ul,
.price-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  color: #344050;
}

.feature-visual,
.ui-preview {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.ui-preview {
  box-shadow: 0 18px 50px rgba(20, 30, 42, 0.08);
}

.feature-visual div {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.feature-visual div:first-child {
  padding-top: 0;
}

.feature-visual div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-visual b {
  min-width: 96px;
  text-align: right;
  white-space: nowrap;
}

.feature-visual em {
  color: var(--green-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  min-width: 64px;
  text-align: right;
}

.table-visual b:first-of-type,
.audit-visual div:first-child b {
  color: var(--coral);
}

.task-visual h4 {
  margin: 10px 0 8px;
  font-size: 24px;
}

.preview-head,
.preview-metrics,
.plan-card,
.audit-score,
.audit-lines div,
.channel-preview div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.preview-head span,
.preview-metrics span,
.plan-card p,
.audit-score span,
.audit-lines span,
.channel-preview span,
.ba-column span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.preview-metrics {
  gap: 10px;
  margin-top: 14px;
}

.preview-metrics div {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.preview-metrics .active {
  border-color: rgba(31, 167, 118, 0.5);
  background: #f5fbf8;
}

.preview-metrics b {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 7px;
  height: 120px;
  margin-top: 16px;
  padding: 12px;
  background: var(--soft);
  border-radius: 10px;
}

.mini-bars i {
  background: linear-gradient(180deg, var(--green), var(--blue));
  border-radius: 7px 7px 2px 2px;
}

.plan-preview {
  display: grid;
  gap: 12px;
}

.plan-card {
  align-items: flex-start;
  padding: 16px;
  background: #fbfcfc;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.plan-card.active {
  background: #fffbea;
  border-color: #ead36b;
}

.plan-card h4 {
  margin: 0;
  font-size: 16px;
}

.plan-card p {
  margin: 8px 0 0;
  line-height: 1.45;
}

.plan-card b {
  color: var(--green-dark);
  white-space: nowrap;
}

.audit-score {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.audit-score strong {
  font-size: 42px;
}

.audit-lines {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.audit-lines div,
.channel-preview div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.audit-lines div:last-child,
.channel-preview div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.before-after-preview {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.ba-column {
  padding: 18px;
  background: var(--soft);
  border-radius: 10px;
  text-align: center;
}

.ba-column b {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.ba-column p {
  margin: 6px 0 0;
  font-size: 12px;
}

.ba-column.success {
  background: #effaf4;
}

.ba-arrow {
  color: var(--muted);
  font-weight: 900;
}

.ba-result {
  grid-column: 1 / -1;
  padding: 12px;
  color: var(--green-dark);
  background: #effaf4;
  border-radius: 10px;
  text-align: center;
  font-weight: 900;
}

.channel-preview {
  display: grid;
  gap: 12px;
}

.channel-preview div {
  display: grid;
  grid-template-columns: 80px 70px 1fr;
}

.channel-preview i {
  display: block;
  height: 9px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
}

.partner-section {
  background: linear-gradient(135deg, #172033, #28243e);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: min(980px, calc(100% - 32px));
  margin: 36px auto 0;
}

.partner-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.partner-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #d7d8ff;
  background: rgba(112, 99, 255, 0.28);
  border-radius: 10px;
  font-weight: 900;
}

.partner-grid h3 {
  margin: 18px 0 0;
}

.partner-grid p {
  color: #aeb7c7;
  line-height: 1.6;
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-card strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 27px;
}

.price-card .button {
  margin-top: auto;
}

.price-card.featured {
  border-color: rgba(31, 167, 118, 0.55);
  box-shadow: var(--shadow);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 34px;
  color: var(--ink);
  background: linear-gradient(135deg, #f1f4f7, #e6ebf0);
  border-color: #d7dee7;
  box-shadow: 0 22px 60px rgba(35, 45, 58, 0.08);
}

.cta-section .eyebrow {
  color: var(--green-dark);
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #cdd5df;
  border-radius: 999px;
}

.cta-form input {
  min-width: 0;
  height: 46px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.cta-form input::placeholder {
  color: #7b8490;
}

.cta-form .button {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.cta-form input:disabled,
.cta-form button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.cta-message {
  grid-column: 2;
  margin: -12px 0 0;
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.45;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .product-panel {
    max-width: 920px;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    border-radius: 26px;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .site-header.open {
    flex-wrap: wrap;
  }

  .site-header.open .nav,
  .site-header.open .header-actions {
    display: flex;
    width: 100%;
  }

  .site-header.open .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 8px 0;
  }

  .menu-button {
    display: block;
  }

  .dashboard-grid,
  .control-grid,
  .problem-grid,
  .steps,
  .pricing-grid,
  .partner-grid,
  .feature-row,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse {
    direction: ltr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .cta-section,
  .footer {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    min-height: auto;
    margin-top: -64px;
    padding-top: 112px;
    gap: 28px;
  }

  .hero h1 {
    max-width: 390px;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero p {
    max-width: 390px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions,
  .header-actions,
  .cta-form,
  .cta-form .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 250px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 340px;
    gap: 10px 16px;
    margin-top: 22px;
  }

  .hero-proof span:last-child {
    grid-column: 1 / -1;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .product-panel {
    width: min(100% - 22px, 980px);
    margin-top: 34px;
    padding: 0 12px 24px;
    border-radius: 14px;
  }

  .browser-bar {
    margin: 0 -12px 12px;
    border-radius: 14px 14px 0 0;
  }

  .panel-top,
  .task-strip,
  .module-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-top strong {
    font-size: 17px;
  }

  .period-switch {
    width: 100%;
    justify-content: space-between;
  }

  .panel-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .free-analysis-button {
    justify-content: center;
  }

  .period-button {
    flex: 1;
  }

  .kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .kpi-card {
    padding: 12px;
  }

  .kpi-card strong {
    font-size: 21px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .premium-status,
  .quality-strip {
    grid-template-columns: 1fr;
  }

  .mobile-soft-hide,
  .desktop-only {
    display: none;
  }

  .chart-card {
    padding: 12px;
  }

  .canvas-wrap.large {
    height: 180px;
  }

  .section {
    padding: 64px 0;
  }

  .project-map-section,
  .partner-section {
    padding: 64px 0;
  }

  .project-map {
    min-height: auto;
  }

  .map-root::after,
  .map-branches article::before {
    display: none;
  }

  .map-branches {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 30px;
  }

  .map-nodes {
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-row,
  .cta-section {
    padding: 22px;
  }

  .preview-metrics,
  .before-after-preview,
  .channel-preview div {
    grid-template-columns: 1fr;
  }

  .preview-metrics {
    flex-direction: column;
  }

  .preview-metrics div {
    width: 100%;
  }

  .plan-card,
  .channel-preview div {
    display: grid;
    justify-items: start;
  }

  .plan-card b,
  .channel-preview b {
    justify-self: start;
  }

  .ba-result {
    grid-column: auto;
  }

  .cta-form {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .cta-message {
    grid-column: auto;
    margin-top: -6px;
  }
}

/* Live landing polish */
body {
  background:
    linear-gradient(90deg, rgba(50, 110, 230, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(50, 110, 230, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0%, #f7f8fb 46%, #edf3f8 100%);
  background-size: 88px 88px, 88px 88px, auto;
}

.hero {
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(50, 110, 230, 0.08), transparent 32%),
    linear-gradient(245deg, rgba(31, 167, 118, 0.07), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #edf3f8 100%);
}

.hero-copy .eyebrow {
  color: var(--blue);
}

.hero-copy .button {
  background: linear-gradient(135deg, #1f2937, #326ee6);
  border-color: transparent;
  box-shadow: 0 18px 42px rgba(50, 110, 230, 0.22);
}

.premium-proof span,
.hero-live-strip span {
  color: #364152;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(50, 110, 230, 0.14);
}

.product-panel {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
  border-color: rgba(50, 110, 230, 0.14);
  box-shadow: 0 34px 90px rgba(40, 68, 100, 0.14);
}

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

.browser-bar {
  color: #64748b;
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(50, 110, 230, 0.1);
}

.browser-bar b {
  color: #37506f;
  background: #edf4ff;
}

.panel-top strong,
.module-head h2 {
  color: var(--ink);
}

.kpi-card,
.chart-card,
.insight-card,
.crawler-preview,
.issue-preview {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(50, 110, 230, 0.13);
  box-shadow: 0 14px 40px rgba(31, 48, 70, 0.07);
}

.premium-status span {
  color: #37506f;
  background: #f4f8ff;
  border-color: rgba(50, 110, 230, 0.12);
}

.muted,
.insight-card p,
.kpi-card em {
  color: #65758a;
}

.mini-bars i {
  animation: barBreathe 4.4s ease-in-out infinite;
}

.mini-bars i:nth-child(2n) {
  animation-delay: 0.35s;
}

.mini-bars i:nth-child(3n) {
  animation-delay: 0.7s;
}

.feature-row,
.problem-grid article,
.partner-grid article,
.steps article,
.price-card {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.feature-row:hover,
.problem-grid article:hover,
.partner-grid article:hover,
.steps article:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 110, 230, 0.22);
  box-shadow: 0 24px 70px rgba(31, 48, 70, 0.1);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 76px 76px, 76px 76px; }
}

@keyframes heroLightSweep {
  0%, 18% { transform: translateX(-62%); opacity: 0; }
  42%, 64% { opacity: 0.48; }
  100% { transform: translateX(62%); opacity: 0; }
}

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

@keyframes crawlTileScan {
  0%, 100% {
    background: linear-gradient(180deg, #e8f2ff, #d7e8ff);
    transform: translateY(0);
  }
  42% {
    background: linear-gradient(180deg, #d8fff0, #aee9d1);
    transform: translateY(-2px);
  }
}

@keyframes issueSlide {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(4px); }
}

@keyframes activeMetricPulse {
  0%, 100% { box-shadow: 0 14px 40px rgba(31, 48, 70, 0.07); }
  50% { box-shadow: 0 20px 58px rgba(50, 110, 230, 0.16); }
}

@keyframes barBreathe {
  0%, 100% { filter: saturate(1); transform: scaleY(1); }
  50% { filter: saturate(1.25); transform: scaleY(1.08); }
}

@media (max-width: 820px) {
  .live-engine-grid {
    grid-template-columns: 1fr;
  }

  .crawl-tiles {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Final unified light theme: the product preview and the lower proof sections
   should feel like one product, not a dark block glued to a white site. */
:root {
  --glass-blue: #f2f8ff;
  --glass-blue-2: #e7f1ff;
  --glass-line: rgba(53, 111, 232, 0.16);
  --glass-shadow: 0 28px 80px rgba(42, 77, 118, 0.12);
}

.product-panel {
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 232, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
}

.product-panel .kpi-card,
.product-panel .chart-card,
.product-panel .insight-card,
.product-panel .crawler-preview,
.product-panel .issue-preview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 255, 0.86));
  border-color: rgba(53, 111, 232, 0.14);
}

.product-panel .kpi-card strong,
.product-panel .chart-card h2,
.product-panel .insight-card strong,
.product-panel .issue-preview h3,
.product-panel .module-head h2 {
  color: #162238;
}

.product-panel .kpi-card span,
.product-panel .kpi-card em,
.product-panel .insight-card p,
.product-panel .module-head span,
.product-panel .issue-preview li {
  color: #677890;
}

.project-map-section,
.partner-section {
  color: #162238;
  background:
    linear-gradient(90deg, rgba(53, 111, 232, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(53, 111, 232, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 18% 0%, rgba(217, 234, 255, 0.86), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
  background-size: 78px 78px, 78px 78px, auto, auto;
  border-top: 1px solid rgba(53, 111, 232, 0.12);
  border-bottom: 1px solid rgba(53, 111, 232, 0.12);
}

.project-map-section .section-heading h2,
.partner-section .section-heading h2,
.project-map-section .section-heading p,
.partner-section .section-heading p {
  color: #162238;
}

.project-map-section .section-heading p,
.partner-section .section-heading p {
  color: #66768b;
}

.project-map {
  border: 1px solid rgba(53, 111, 232, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(232, 242, 255, 0.72));
  box-shadow: var(--glass-shadow);
}

.map-root {
  color: #ffffff;
  background: linear-gradient(135deg, #356fe8, #28b587);
  box-shadow: 0 18px 48px rgba(53, 111, 232, 0.24);
}

.map-root::after,
.map-branches article::before {
  background: linear-gradient(180deg, rgba(53, 111, 232, 0.3), rgba(40, 181, 135, 0.12));
}

.map-branches article,
.partner-grid article {
  color: #162238;
  border: 1px solid rgba(53, 111, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 255, 0.82));
  box-shadow: 0 18px 54px rgba(42, 77, 118, 0.1);
}

.map-branches h3,
.partner-grid h3 {
  color: #162238;
}

.map-branches p,
.map-branches em,
.partner-grid p {
  color: #66768b;
}

.map-icon,
.partner-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #4f8cff, #28b587);
  box-shadow: 0 16px 34px rgba(53, 111, 232, 0.18);
}

.map-nodes b {
  color: #315072;
  background: rgba(244, 249, 255, 0.96);
  border: 1px solid rgba(53, 111, 232, 0.16);
}

.mini-bars i,
.channel-preview i,
.bar span,
.crawl-tiles i {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(80, 145, 255, 0.96), rgba(35, 105, 224, 0.88));
  background-size: 100% 160%;
  animation: liveBarWave 3.4s ease-in-out infinite;
}

.mini-bars i::after,
.channel-preview i::after,
.bar span::after,
.crawl-tiles i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-140%);
  animation: barShine 3.4s ease-in-out infinite;
}

.mini-bars i:nth-child(2n),
.crawl-tiles i:nth-child(2n) {
  animation-delay: 0.24s;
}

.mini-bars i:nth-child(3n),
.crawl-tiles i:nth-child(3n) {
  animation-delay: 0.48s;
}

.chart-card-main {
  position: relative;
  overflow: hidden;
}

.chart-card-main::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(53, 111, 232, 0.28), rgba(40, 181, 135, 0.38), transparent);
  animation: chartBreath 4.6s ease-in-out infinite;
}

@keyframes barShine {
  0%, 22% { transform: translateX(-140%); opacity: 0; }
  42% { opacity: 1; }
  74%, 100% { transform: translateX(140%); opacity: 0; }
}

@keyframes liveBarWave {
  0%, 100% {
    filter: saturate(1);
    transform: scaleY(1);
    background-position: 0% 100%;
  }
  50% {
    filter: saturate(1.2);
    transform: scaleY(1.08);
    background-position: 0% 0%;
  }
}

@keyframes chartBreath {
  0%, 100% { opacity: 0.28; transform: scaleX(0.72); }
  50% { opacity: 0.75; transform: scaleX(1); }
}

/* Final public-ready polish */
body:not(.is-dashboard-open) {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
button,
a,
.auth-dialog,
.dashboard-app {
  -webkit-user-select: auto;
  user-select: auto;
}

.pricing-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card small {
  display: block;
  margin: -12px 0 16px;
  color: var(--muted);
  font-weight: 700;
}

.problem-card-yellow {
  border-color: rgba(53, 125, 246, 0.24) !important;
  background: linear-gradient(145deg, rgba(236, 246, 255, 0.92), rgba(255, 255, 255, 0.94)) !important;
  box-shadow: 0 22px 60px rgba(61, 126, 246, 0.1);
}

.problem-card-yellow .problem-icon {
  color: #fff;
  background: linear-gradient(135deg, #62a2ff, #397df6);
}

.price-card,
.feature-card,
.problem-grid article,
.insight-card,
.issue-preview,
.crawler-preview,
.chart-card,
.quality-strip div,
.faq-list details {
  border-color: rgba(129, 169, 220, 0.34) !important;
}

.premium-status span,
.quality-strip div,
.crawl-tiles i,
.mini-bars i,
.channel-preview i {
  position: relative;
  overflow: hidden;
}

.premium-status span::after,
.quality-strip div::after,
.mini-bars i::after,
.channel-preview i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: cometMove 2.8s linear infinite;
}

@keyframes cometMove {
  from { transform: translateX(-140%); }
  to { transform: translateX(260%); }
}

.issue-preview li {
  background: rgba(244, 249, 255, 0.92);
}

.cta-message {
  max-width: 780px;
  color: var(--muted);
  font-weight: 800;
}

.auth-form select {
  color: var(--ink);
  border-color: rgba(130, 169, 220, 0.42);
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #397df6 50%),
    linear-gradient(135deg, #397df6 50%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.94));
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.auth-form input {
  color: var(--ink);
  border-color: rgba(130, 169, 220, 0.42);
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 1180px) {
  .pricing-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-grid-four {
    grid-template-columns: 1fr;
  }
}

/* Auth state, pricing, and public landing refinements */
[hidden] {
  display: none !important;
}

html,
body {
  scroll-behavior: smooth;
}

.header-panel-button {
  box-shadow: 0 14px 32px rgba(53, 111, 232, 0.16);
}

body.is-authenticated .header-actions {
  min-width: 142px;
  justify-content: flex-end;
}

.hero-actions .button[data-dashboard-open] {
  min-width: 190px;
}

.auth-dialog {
  max-width: 460px;
}

.auth-form {
  gap: 14px;
}

.auth-form label span {
  font-size: 12px;
  font-weight: 850;
}

.free-analysis-button {
  color: #0f7b59;
  background:
    linear-gradient(90deg, rgba(31, 167, 118, 0.14), rgba(53, 111, 232, 0.1));
  border-color: rgba(31, 167, 118, 0.36);
  box-shadow: 0 12px 28px rgba(31, 167, 118, 0.14);
}

.free-analysis-button:hover {
  color: #075f43;
  background:
    linear-gradient(90deg, rgba(31, 167, 118, 0.2), rgba(53, 111, 232, 0.14));
}

.crawler-preview .module-head.compact {
  align-items: flex-start;
}

.crawl-tiles {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 9px;
}

.crawl-tiles i {
  border-radius: 12px;
  border-color: rgba(64, 137, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(96, 156, 255, 0.9), rgba(48, 116, 232, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 22px rgba(63, 126, 232, 0.12);
}

.project-map-section {
  padding: 92px 0;
}

.project-map-section .section-heading .eyebrow {
  color: #2f78e8;
}

.project-map-section .section-heading h2 {
  max-width: 780px;
  margin: 0 auto;
}

.project-map-section .section-heading p {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.project-map {
  width: min(940px, calc(100% - 32px));
  min-height: 0;
  padding: 34px;
  border-radius: 28px;
}

.map-root {
  padding: 14px 30px;
  border-radius: 999px;
}

.map-root::after,
.map-branches article::before {
  display: none;
}

.map-branches {
  gap: 18px;
  padding-top: 28px;
}

.map-branches article {
  justify-items: start;
  gap: 12px;
  min-height: 208px;
  padding: 24px;
  border-radius: 22px;
}

.map-icon {
  width: 50px;
  height: 50px;
  font-size: 23px;
  border-radius: 16px;
}

.map-branches h3 {
  font-size: 20px;
  line-height: 1.15;
}

.map-nodes {
  justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 0;
}

.map-nodes b {
  min-width: 0;
  height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.map-branches em {
  max-width: 220px;
  color: #5f7188;
  font-size: 13px;
  line-height: 1.45;
}

.pricing .section-heading {
  max-width: 850px;
}

.pricing .section-heading p {
  max-width: 760px;
}

.pricing-grid-four {
  align-items: stretch;
  gap: 18px;
}

.price-card {
  min-height: 490px;
  padding: 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(129, 169, 220, 0.42) !important;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(215, 233, 255, 0.86), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.9));
  box-shadow: 0 18px 52px rgba(42, 77, 118, 0.09);
}

.price-card.featured {
  border-color: rgba(53, 111, 232, 0.5) !important;
  box-shadow: 0 26px 72px rgba(53, 111, 232, 0.15);
}

.plan-chip {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 11px;
  color: #245fca;
  background: rgba(53, 111, 232, 0.08);
  border: 1px solid rgba(53, 111, 232, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-top: 0;
  font-size: 26px;
}

.price-card p {
  min-height: 76px;
  margin-bottom: 20px;
  color: #66768b;
  line-height: 1.5;
}

.price-card strong {
  margin: 0;
  color: #111827;
  font-size: 34px;
  line-height: 1.05;
}

.price-card small {
  margin: 8px 0 22px;
  color: #69778b;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 18px;
  color: #3e4b5d;
  line-height: 1.45;
}

.price-card .button {
  width: 100%;
  min-height: 46px;
}

@media (max-width: 760px) {
  .map-branches {
    grid-template-columns: 1fr;
  }

  .map-branches article {
    min-height: 0;
  }

  .project-map {
    padding: 22px;
  }
}

/* Pricing width correction: use the whole section instead of leaving an empty right side. */
.pricing {
  width: min(1360px, calc(100% - 48px));
}

.pricing .section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.pricing .section-heading h2 {
  max-width: 860px;
}

.pricing .section-heading p {
  max-width: 820px;
}

.pricing-grid.pricing-grid-four {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 22px;
}

.pricing-grid.pricing-grid-four .price-card {
  min-height: 460px;
}

.pricing-grid.pricing-grid-four .price-card p {
  min-height: 68px;
}

@media (max-width: 1180px) {
  .pricing-grid.pricing-grid-four {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing {
    width: min(100% - 22px, 1180px);
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr;
  }
}

/* Patch v24: calmer premium surface, livelier previews, cleaner selling path */
body {
  background:
    radial-gradient(circle at 16% 8%, rgba(96, 165, 250, 0.18), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(32, 184, 135, 0.13), transparent 30%),
    linear-gradient(rgba(57, 125, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 125, 246, 0.055) 1px, transparent 1px),
    #f4f8fc;
  background-size: auto, auto, 84px 84px, 84px 84px, auto;
}

.site-header {
  border-color: rgba(154, 187, 226, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.86));
  box-shadow: 0 20px 70px rgba(42, 82, 130, 0.13);
}

.hero::before {
  opacity: 0.55;
}

.hero-copy h1 {
  max-width: 920px;
}

.product-panel {
  width: min(1080px, calc(100% - 36px));
  color: #142033;
  border: 1px solid rgba(136, 176, 226, 0.5);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 232, 255, 0.96), transparent 36%),
    radial-gradient(circle at 90% 18%, rgba(190, 244, 226, 0.46), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
  box-shadow:
    0 38px 110px rgba(52, 92, 136, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-panel .browser-bar {
  border-color: rgba(156, 190, 232, 0.55);
  background: rgba(255, 255, 255, 0.76);
}

.product-panel .kpi-card,
.product-panel .chart-card,
.product-panel .insight-card,
.product-panel .crawler-preview,
.product-panel .issue-preview {
  border-color: rgba(127, 169, 222, 0.36) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 245, 255, 0.86));
  box-shadow:
    0 18px 42px rgba(58, 99, 145, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-panel .kpi-card strong,
.product-panel .module-head h2,
.product-panel .chart-card h2,
.product-panel .insight-card strong,
.product-panel .issue-preview h3 {
  color: #111827;
}

.product-panel .muted,
.product-panel .module-head span,
.product-panel .kpi-card span,
.product-panel .kpi-card em,
.product-panel .insight-card p,
.product-panel .issue-preview li {
  color: #61738c;
}

.live-chip {
  color: #0f7b59;
  border-color: rgba(32, 184, 135, 0.34);
  background: rgba(223, 252, 242, 0.72);
}

.crawl-tiles i,
.mini-bars i,
.channel-preview i {
  background:
    linear-gradient(180deg, #62a5ff, #2f75f0);
  box-shadow:
    0 14px 28px rgba(63, 130, 246, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.crawl-tiles i::after,
.mini-bars i::after,
.channel-preview i::after {
  animation-duration: 2.15s;
}

.quality-strip {
  width: min(1180px, calc(100% - 34px));
  gap: 12px;
}

.quality-strip div {
  min-height: 86px;
  align-items: center;
  border-color: rgba(127, 169, 222, 0.4) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.82));
}

.problem-grid article {
  border-color: rgba(127, 169, 222, 0.38) !important;
}

.problem-card-yellow {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(235, 245, 255, 0.92));
}

.problem-card-yellow .problem-icon {
  color: #fff;
  background: linear-gradient(135deg, #5da0ff, #27b58e);
}

.project-map {
  border-color: rgba(127, 169, 222, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 226, 255, 0.8), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.9));
}

.map-branches article {
  border-color: rgba(127, 169, 222, 0.42);
  background: rgba(255, 255, 255, 0.68);
}

.map-icon {
  color: #fff;
  background: linear-gradient(135deg, #3f82f6, #22b489);
}

.feature-row,
.partner-grid article,
.faq-list details,
.price-card {
  border-color: rgba(127, 169, 222, 0.42) !important;
}

.feature-row {
  background:
    radial-gradient(circle at 0% 0%, rgba(222, 238, 255, 0.8), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(241,247,255,0.86));
}

.pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.pricing .section-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.pricing-grid.pricing-grid-four .price-card {
  min-height: 430px;
}

.price-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 130, 246, 0.62) !important;
  box-shadow: 0 30px 86px rgba(63, 130, 246, 0.17);
}

.price-card.featured::after {
  content: "часто выбирают";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(32, 184, 135, 0.28);
  border-radius: 999px;
  color: #0f7b59;
  background: rgba(226, 252, 243, 0.92);
  font-size: 11px;
  font-weight: 900;
}

.price-card.featured .plan-chip {
  padding-right: 120px;
}

.cta-section {
  border-color: rgba(127, 169, 222, 0.42);
  background:
    radial-gradient(circle at 22% 0%, rgba(204, 226, 255, 0.78), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(238,246,255,0.9));
}

.footer {
  border-color: rgba(127, 169, 222, 0.3);
}

@media (max-width: 1180px) {
  .pricing {
    grid-template-columns: 1fr;
  }

  .pricing .section-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .product-panel,
  .quality-strip {
    width: min(100% - 22px, 1080px);
  }
}

/* Patch v25: prevent accidental blue text selection on public surface */
body,
body * {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea {
  -webkit-user-select: text;
  user-select: text;
}

::selection {
  background: transparent;
}

/* Patch v26: live light SaaS surface and cleaner public handoff */
html {
  scroll-behavior: smooth;
}

body,
body * {
  -webkit-user-select: none !important;
  user-select: none !important;
}

input,
textarea,
button {
  -webkit-tap-highlight-color: transparent;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(59, 130, 246, 0.13), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(32, 184, 135, 0.12), transparent 26%),
    linear-gradient(rgba(63, 130, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 130, 246, 0.055) 1px, transparent 1px),
    #f3f8fe !important;
  background-size: auto, auto, 82px 82px, 82px 82px, auto !important;
}

.site-header {
  width: min(1220px, calc(100% - 36px)) !important;
  border-color: rgba(151, 187, 234, 0.6) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(244,250,255,0.9)) !important;
}

.header-actions [data-guest-only][hidden],
.header-actions [data-authenticated-only][hidden],
[data-guest-only][hidden],
[data-authenticated-only][hidden] {
  display: none !important;
}

body.is-authenticated .header-actions {
  justify-content: flex-end !important;
}

body.is-authenticated .header-actions .header-panel-button {
  display: inline-flex !important;
}

.button,
.ghost-link,
.free-analysis-button,
.cta-form button,
.price-card .button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease !important;
}

.button:hover,
.ghost-link:hover,
.free-analysis-button:hover,
.price-card:hover .button {
  transform: translateY(-2px);
}

.free-analysis-button {
  color: #0f7b59 !important;
  border-color: rgba(32, 184, 135, 0.42) !important;
  background: linear-gradient(135deg, rgba(223, 252, 242, 0.98), rgba(255, 255, 255, 0.94)) !important;
  box-shadow: 0 14px 34px rgba(32, 184, 135, 0.12) !important;
}

.product-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(134, 176, 229, 0.58) !important;
}

.product-panel::after,
.feature-row::after,
.project-map::after,
.cta-section::after {
  content: "";
  position: absolute;
  inset: auto -16% -55% 54%;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 184, 135, 0.18), transparent 62%);
  filter: blur(4px);
}

.crawl-tiles i,
.mini-bars i,
.channel-preview i {
  position: relative;
  overflow: hidden;
}

.crawl-tiles i::after,
.mini-bars i::after,
.channel-preview i::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 38%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.66), transparent);
  animation: comet-pass 2.8s ease-in-out infinite;
}

.crawl-tiles i:nth-child(2n)::after {
  animation-delay: 0.45s;
}

.crawl-tiles i:nth-child(3n)::after {
  animation-delay: 0.9s;
}

@keyframes comet-pass {
  0% { left: -60%; opacity: 0; }
  18% { opacity: 1; }
  62% { opacity: 0.95; }
  100% { left: 125%; opacity: 0; }
}

.live-chip,
.crawler-preview .live-chip {
  color: #0f7b59 !important;
  border-color: rgba(32, 184, 135, 0.32) !important;
  background: rgba(224, 252, 243, 0.78) !important;
}

.project-map-section {
  padding-inline: max(24px, 6vw) !important;
}

.project-map {
  width: min(980px, 100%) !important;
  margin-inline: auto !important;
  padding: clamp(32px, 4vw, 54px) !important;
  border-radius: 32px !important;
  border-color: rgba(134, 176, 229, 0.62) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 226, 255, 0.86), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(238,247,255,0.9)) !important;
}

.map-root {
  border-radius: 18px !important;
  background: linear-gradient(135deg, #4f8cff, #20b887) !important;
  box-shadow: 0 22px 54px rgba(47, 124, 246, 0.2) !important;
}

.map-branches {
  gap: clamp(22px, 4vw, 56px) !important;
}

.map-branches article {
  padding: 24px !important;
  border-radius: 24px !important;
  border-color: rgba(134, 176, 229, 0.56) !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

.map-icon {
  font-size: 24px !important;
  letter-spacing: 0 !important;
}

.pricing {
  width: min(1420px, calc(100% - 44px)) !important;
  max-width: none !important;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 32px !important;
}

.pricing-grid.pricing-grid-four {
  width: 100% !important;
  max-width: none !important;
  grid-template-columns: repeat(4, minmax(210px, 1fr)) !important;
  gap: 18px !important;
}

.price-card {
  min-height: 458px !important;
  padding: 28px 24px !important;
  border-color: rgba(134, 176, 229, 0.56) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 184, 135, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239,247,255,0.88)) !important;
}

.price-card.featured::after {
  content: "" !important;
  display: none !important;
}

.price-card.featured .plan-chip {
  padding-right: 12px !important;
}

.plan-chip {
  width: fit-content !important;
  color: #175fd2 !important;
  border: 1px solid rgba(63, 130, 246, 0.28) !important;
  background: rgba(231, 241, 255, 0.86) !important;
}

.price-card p {
  min-height: 86px !important;
}

.price-card ul {
  min-height: 118px !important;
}

.cta-section {
  position: relative;
  overflow: hidden;
  width: min(1120px, calc(100% - 40px)) !important;
}

.footer {
  position: relative !important;
  z-index: 2 !important;
  width: min(1220px, calc(100% - 36px)) !important;
  margin-inline: auto !important;
  border-color: rgba(134, 176, 229, 0.4) !important;
}

@media (max-width: 1180px) {
  .pricing {
    grid-template-columns: 1fr !important;
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr !important;
  }

  .project-map {
    padding: 26px 18px !important;
  }
}

/* Patch v42: public page stabilization and premium light surface */
html {
  scroll-behavior: smooth;
}

body,
body * {
  -webkit-user-select: none !important;
  user-select: none !important;
}

input,
textarea,
select,
button {
  -webkit-user-select: none !important;
  user-select: none !important;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-auth-open,
html.is-auth-open {
  overflow: hidden !important;
}

.auth-modal[hidden] {
  display: none !important;
}

/* Patch v43: public product polish, stable auth overlay, no accidental selection */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
body * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  user-select: none;
}

input,
textarea {
  user-select: none !important;
}

.site-header {
  backdrop-filter: blur(22px) saturate(1.08);
}

.is-auth-open,
.is-auth-open body {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.auth-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: grid !important;
  place-items: start center !important;
  padding: clamp(28px, 7vh, 72px) 16px 32px !important;
  overflow: hidden !important;
}

.auth-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(18, 28, 42, 0.52) !important;
  backdrop-filter: blur(16px) !important;
}

.auth-dialog {
  position: relative !important;
  width: min(430px, calc(100vw - 28px)) !important;
  max-height: min(760px, calc(100dvh - 48px)) !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  border: 1px solid rgba(201, 218, 237, 0.86) !important;
  border-radius: 30px !important;
  background: linear-gradient(145deg, #ffffff, #eef6ff) !important;
  box-shadow: 0 30px 90px rgba(31, 68, 113, 0.28) !important;
}

.auth-dialog::-webkit-scrollbar {
  width: 8px;
}

.auth-dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, #8ab9ff, #397df6);
}

.dashboard-app.dashboard-frame-host {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9000 !important;
  background: #edf5ff !important;
}

.dashboard-frame-shell,
.dashboard-frame-shell iframe {
  width: 100% !important;
  height: 100dvh !important;
  border: 0 !important;
  display: block !important;
}

.hero {
  isolation: isolate;
}

.product-panel {
  border-color: rgba(155, 188, 226, 0.72) !important;
  box-shadow: 0 34px 120px rgba(47, 99, 168, 0.16) !important;
}

.crawler-preview,
.issue-preview,
.chart-card,
.insight-card,
.price-card,
.problem-card-red,
.problem-card-yellow,
.problem-card-purple {
  box-shadow: 0 18px 54px rgba(40, 86, 145, 0.08) !important;
}

.crawl-tiles i {
  position: relative;
  overflow: hidden;
}

.crawl-tiles i::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 36%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: tileComet 3.8s ease-in-out infinite;
}

.crawl-tiles i:nth-child(3n)::after {
  animation-delay: 0.5s;
}

.crawl-tiles i:nth-child(4n)::after {
  animation-delay: 1.2s;
}

@keyframes tileComet {
  0%, 24% {
    translate: 0 0;
    opacity: 0;
  }
  38% {
    opacity: 1;
  }
  72%, 100% {
    translate: 420% 0;
    opacity: 0;
  }
}

.pricing {
  max-width: 1180px;
  margin-inline: auto;
}

.pricing .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  align-items: end;
  gap: 32px;
}

.pricing-grid-four {
  grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
  gap: 18px !important;
}

.price-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 520px !important;
  padding: 24px !important;
  border-color: rgba(159, 193, 232, 0.78) !important;
}

.price-card .button {
  margin-top: auto !important;
}

.plan-chip {
  width: max-content;
  border: 1px solid rgba(102, 153, 228, 0.38);
  background: #eaf3ff;
}

.problem-card-yellow,
.problem-card-red,
.problem-card-purple {
  border-color: rgba(157, 193, 232, 0.72) !important;
}

.problem-card-yellow {
  background: linear-gradient(145deg, #fff, #f3f8ff) !important;
}

.free-analysis-button {
  color: #0d6b4e !important;
  background: linear-gradient(135deg, #f1fff8, #dff8ee) !important;
  border-color: rgba(23, 183, 131, 0.48) !important;
}

.quality-strip {
  border-color: rgba(159, 193, 232, 0.68) !important;
}

.project-map {
  border-color: rgba(159, 193, 232, 0.72) !important;
}

.map-icon {
  font-size: 24px !important;
}

@media (max-width: 980px) {
  .pricing .section-heading,
  .pricing-grid-four {
    grid-template-columns: 1fr !important;
  }

  .price-card {
    min-height: auto !important;
  }
}

.auth-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  overflow: hidden !important;
}

.auth-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(26, 36, 50, 0.48) !important;
  backdrop-filter: blur(16px) saturate(1.08) !important;
}

.auth-dialog {
  position: relative !important;
  max-height: min(720px, calc(100dvh - 32px)) !important;
  overflow: auto !important;
  margin: clamp(16px, 7vh, 72px) auto !important;
}

.dashboard-app.dashboard-frame-host {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99990 !important;
  background: #eef6ff !important;
  overflow: hidden !important;
}

.dashboard-frame-shell,
.dashboard-frame-shell iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
}

.site-main {
  overflow: hidden;
}

.product-panel {
  background:
    radial-gradient(circle at 18% 0%, rgba(135, 187, 255, 0.24), transparent 34%),
    radial-gradient(circle at 92% 20%, rgba(32, 184, 135, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 255, 0.92)) !important;
  color: var(--ink) !important;
  border-color: rgba(134, 176, 229, 0.64) !important;
  box-shadow: 0 36px 100px rgba(50, 104, 178, 0.16) !important;
}

.product-panel .browser-bar {
  background: rgba(255, 255, 255, 0.72) !important;
  border-bottom: 1px solid rgba(134, 176, 229, 0.36) !important;
}

.product-panel .browser-card,
.product-panel .crawler-preview,
.product-panel .unified-preview,
.product-panel .risk-card {
  background: rgba(255, 255, 255, 0.76) !important;
  border-color: rgba(134, 176, 229, 0.42) !important;
}

.crawler-preview .crawl-tiles i,
.crawl-tiles i {
  background: linear-gradient(135deg, #75adff, #2f7cf6) !important;
  box-shadow: 0 14px 28px rgba(47, 124, 246, 0.16) !important;
}

.project-map-section {
  padding-top: clamp(70px, 8vw, 110px) !important;
  padding-bottom: clamp(70px, 8vw, 110px) !important;
}

.project-map-eyebrow {
  color: #256bd8 !important;
  opacity: 1 !important;
}

.project-map {
  min-height: 440px !important;
}

.map-branches article {
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.map-branches article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(50, 104, 178, 0.14) !important;
}

.pricing {
  width: min(1360px, calc(100% - 48px)) !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
}

.pricing .section-heading {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 680px) minmax(260px, 1fr) !important;
  align-items: end !important;
  gap: 24px !important;
}

.pricing .section-heading h2 {
  max-width: 720px !important;
}

.pricing .section-heading p {
  max-width: 560px !important;
  justify-self: end !important;
}

.pricing-grid.pricing-grid-four {
  grid-template-columns: repeat(4, minmax(220px, 1fr)) !important;
  gap: 20px !important;
}

.price-card {
  min-height: 470px !important;
  display: flex !important;
  flex-direction: column !important;
}

.price-card p {
  min-height: 92px !important;
}

.price-card ul {
  min-height: 126px !important;
}

.price-card .button {
  margin-top: auto !important;
  width: 100% !important;
}

.price-card.featured::after {
  content: "" !important;
  display: none !important;
}

.free-analysis-button,
.live-chip {
  color: #0d7f5f !important;
  background: linear-gradient(135deg, #ddfff1, #ffffff) !important;
  border-color: rgba(32, 184, 135, 0.48) !important;
}

.cta-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 184, 135, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,247,255,0.9)) !important;
  border-color: rgba(134, 176, 229, 0.48) !important;
}

@media (max-width: 980px) {
  .pricing .section-heading {
    grid-template-columns: 1fr !important;
  }

  .pricing .section-heading p {
    justify-self: start !important;
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr !important;
  }
}

/* Patch v44: public site delivery polish */
html {
  scroll-behavior: smooth !important;
}

html,
body,
body * {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: geometricPrecision !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}

::selection {
  background: transparent !important;
}

body {
  overflow-x: hidden !important;
  background:
    radial-gradient(circle at 86% 9%, rgba(34, 184, 135, 0.12), transparent 28%),
    radial-gradient(circle at 12% 4%, rgba(75, 139, 246, 0.16), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #edf5ff 52%, #f9fcff 100%) !important;
}

body.is-auth-open,
html.is-auth-open,
body.is-dashboard-open,
html.is-dashboard-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.site-shell {
  min-height: 100dvh !important;
}

.site-header {
  backdrop-filter: blur(22px) saturate(1.14) !important;
  box-shadow: 0 18px 60px rgba(39, 94, 170, 0.10) !important;
}

.site-main,
.section,
.hero,
.pricing,
.product-showcase,
.feature-grid,
.faq-section {
  min-width: 0 !important;
}

.button,
.period-button,
.nav-links a,
.price-card,
.feature-card,
.problem-card,
.mini-card,
.product-panel,
.project-map,
.auth-dialog {
  -webkit-tap-highlight-color: transparent !important;
}

.product-panel,
.browser-card,
.crawler-preview,
.unified-preview,
.risk-card,
.price-card,
.feature-card,
.problem-card,
.mini-card,
.faq-item,
.auth-dialog {
  border-color: rgba(142, 187, 247, 0.66) !important;
  box-shadow: 0 24px 80px rgba(49, 105, 184, 0.12) !important;
}

.product-panel {
  background:
    radial-gradient(circle at 12% 2%, rgba(105, 167, 255, 0.20), transparent 34%),
    radial-gradient(circle at 94% 20%, rgba(34, 184, 135, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(238,247,255,0.92)) !important;
}

.crawl-tiles i,
.crawler-preview .crawl-tiles i {
  position: relative !important;
  overflow: hidden !important;
}

.crawl-tiles i::after,
.crawler-preview .crawl-tiles i::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 -70% !important;
  width: 55% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.48), transparent) !important;
  animation: tileComet 3.4s ease-in-out infinite !important;
}

@keyframes tileComet {
  0% { transform: translateX(0); opacity: 0; }
  18% { opacity: 1; }
  78% { opacity: 1; }
  100% { transform: translateX(330%); opacity: 0; }
}

.free-analysis-button,
.live-chip {
  color: #0b7f5d !important;
  background:
    linear-gradient(135deg, rgba(227, 255, 242, 0.96), rgba(255,255,255,0.94)) !important;
  border-color: rgba(27, 185, 132, 0.58) !important;
  box-shadow: 0 10px 28px rgba(27, 185, 132, 0.12) !important;
}

.pricing {
  width: min(1320px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
}

.pricing .section-heading {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 720px) minmax(300px, 1fr) !important;
  gap: 34px !important;
  align-items: end !important;
}

.pricing .section-heading p {
  justify-self: start !important;
  max-width: 620px !important;
}

.pricing-grid.pricing-grid-four {
  width: 100% !important;
  grid-template-columns: repeat(4, minmax(240px, 1fr)) !important;
  gap: 22px !important;
}

.price-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 500px !important;
  padding: 28px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(237,247,255,0.88)) !important;
}

.price-card ul {
  min-height: 140px !important;
}

.price-card .button,
.price-card button {
  margin-top: auto !important;
}

.price-card.featured::after,
.price-badge:empty,
.discount-badge:empty {
  display: none !important;
}

.project-map-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(34,184,135,0.12), transparent 30%),
    linear-gradient(180deg, rgba(246,251,255,0.92), rgba(235,246,255,0.96)) !important;
}

.project-map {
  width: min(1120px, 100%) !important;
  margin-inline: auto !important;
  padding: clamp(28px, 4vw, 54px) !important;
  border-radius: 34px !important;
  background:
    radial-gradient(circle at 50% 10%, rgba(82, 150, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(236,247,255,0.90)) !important;
}

.map-icon {
  font-size: 26px !important;
}

.auth-modal {
  display: grid !important;
  place-items: start center !important;
  padding: clamp(18px, 6vh, 70px) 18px !important;
  overflow: hidden !important;
}

.auth-modal[hidden] {
  display: none !important;
}

.auth-dialog {
  width: min(430px, calc(100vw - 32px)) !important;
  max-height: min(760px, calc(100dvh - 36px)) !important;
  overflow: auto !important;
  overscroll-behavior: contain !important;
  margin: 0 auto !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 144, 246, 0.14), transparent 34%),
    linear-gradient(145deg, #ffffff, #f3f8ff) !important;
}

.auth-backdrop {
  background:
    radial-gradient(circle at 48% 26%, rgba(77, 143, 246, 0.18), transparent 30%),
    rgba(18, 28, 42, 0.52) !important;
}

.dashboard-app.dashboard-frame-host {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99990 !important;
  overflow: hidden !important;
  background: #eef6ff !important;
}

.dashboard-app.dashboard-frame-host .dashboard-frame-shell,
.dashboard-app.dashboard-frame-host iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100dvh !important;
  border: 0 !important;
  display: block !important;
}

body.is-dashboard-open .site-shell {
  pointer-events: none !important;
}

@media (max-width: 1100px) {
  .pricing .section-heading {
    grid-template-columns: 1fr !important;
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .pricing {
    width: min(100% - 24px, 520px) !important;
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr !important;
  }
}

/* v45 public stabilization */
.site-main {
  overflow-x: clip !important;
}

.section,
.feature-row,
.price-card,
.project-map,
.partner-grid article,
.problem-grid article,
.ui-preview {
  min-width: 0 !important;
}

.site-header {
  margin-bottom: 18px !important;
}

.hero,
.section {
  scroll-margin-top: 108px !important;
}

.auth-modal {
  place-items: center !important;
  padding: 20px !important;
}

.auth-dialog {
  margin: 0 !important;
  max-height: min(760px, calc(100dvh - 40px)) !important;
}

.pricing .section-heading {
  position: static !important;
  display: block !important;
  max-width: 920px !important;
  margin: 0 0 32px !important;
}

.pricing .section-heading h2,
.pricing .section-heading p {
  max-width: 760px !important;
}

.pricing-grid.pricing-grid-four {
  align-items: stretch !important;
}

.price-card {
  overflow: hidden !important;
}

.price-card h3,
.price-card p,
.price-card li,
.price-card strong,
.price-card small {
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

.crawl-tiles {
  display: none !important;
}

.crawl-summary {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 14px !important;
}

.crawl-summary article {
  min-height: 108px !important;
  padding: 18px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(130, 183, 243, 0.48) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 150, 255, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(240,247,255,0.86)) !important;
  box-shadow: 0 18px 44px rgba(56, 108, 186, 0.08) !important;
}

.crawl-summary span {
  display: block !important;
  margin-bottom: 8px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #4d79c1 !important;
}

.crawl-summary strong {
  display: block !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  color: #18243a !important;
}

.mini-bars,
.channel-preview,
.before-after-preview,
.audit-preview,
.analytics-preview {
  min-width: 0 !important;
}

.mini-bars {
  overflow: hidden !important;
}

.mini-bars i {
  min-height: 34px !important;
}

.channel-preview div {
  align-items: center !important;
}

.channel-preview span,
.channel-preview b {
  white-space: nowrap !important;
}

.project-map {
  min-height: 0 !important;
}

.map-branches article {
  min-width: 0 !important;
  overflow: hidden !important;
}

.map-branches article h3,
.map-branches article em,
.map-branches article b {
  overflow-wrap: anywhere !important;
}

@media (max-width: 980px) {
  .crawl-summary {
    grid-template-columns: 1fr !important;
  }
}

/* v46 public bugfix pass */
html,
body {
  overflow-x: clip !important;
}

html.is-auth-open,
body.is-auth-open {
  overflow: hidden !important;
  height: 100dvh !important;
}

.site-header {
  margin-bottom: 30px !important;
}

.auth-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 12000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  overflow: auto !important;
}

.auth-modal[hidden] {
  display: none !important;
}

.auth-backdrop {
  position: fixed !important;
  inset: 0 !important;
}

.auth-dialog {
  position: relative !important;
  z-index: 1 !important;
  margin: auto !important;
  width: min(430px, calc(100vw - 32px)) !important;
  max-height: min(760px, calc(100dvh - 48px)) !important;
  overflow: auto !important;
}

.pricing {
  display: grid !important;
  gap: 28px !important;
}

.pricing .section-heading {
  position: static !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  max-width: 760px !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
}

.pricing .section-heading h2,
.pricing .section-heading p {
  max-width: 760px !important;
}

.pricing-grid.pricing-grid-four {
  width: 100% !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.price-card {
  display: grid !important;
  align-content: start !important;
  min-height: 100% !important;
  padding-bottom: 24px !important;
}

.price-card ul {
  margin-bottom: 18px !important;
}

.price-card h3,
.price-card p,
.price-card li,
.price-card strong,
.price-card small,
.price-card a {
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

.crawler-preview,
.crawl-summary,
.crawl-summary article {
  min-width: 0 !important;
}

.crawl-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.crawl-summary article {
  min-height: 124px !important;
  align-content: start !important;
}

.crawl-summary article strong {
  line-height: 1.4 !important;
}

.project-map-section .section-heading.centered {
  max-width: 820px !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
}

.project-map {
  padding: 30px !important;
}

.map-branches {
  gap: 24px !important;
}

.map-branches article {
  min-height: 240px !important;
  justify-content: start !important;
}

@media (max-width: 1180px) {
  .pricing-grid.pricing-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* v144: final pricing override, must stay at EOF. */
.pricing {
  display: block !important;
  padding-top: clamp(72px, 8vw, 104px) !important;
}

.pricing .section-heading {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 1120px !important;
  min-height: 0 !important;
  margin: 0 auto clamp(34px, 4vw, 52px) !important;
  padding: 0 !important;
  text-align: center !important;
  z-index: 0 !important;
}

.pricing .section-heading h2 {
  position: static !important;
  transform: none !important;
  display: block !important;
  margin: 0 !important;
  max-width: none !important;
  color: #111827 !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.pricing .section-heading .eyebrow,
.pricing .section-heading p {
  display: none !important;
}

.pricing-grid.pricing-grid-four {
  position: relative !important;
  z-index: 1 !important;
  clear: both !important;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .pricing {
    padding-top: 56px !important;
  }

  .pricing .section-heading {
    margin-bottom: 28px !important;
  }

  .pricing .section-heading h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
    text-align: left !important;
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr !important;
  }
}

/* v143: keep pricing title compact and physically above tariff cards. */
.pricing {
  display: block !important;
  padding-top: clamp(72px, 8vw, 104px) !important;
}

.pricing .section-heading {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 1120px !important;
  min-height: 0 !important;
  margin: 0 auto clamp(34px, 4vw, 52px) !important;
  padding: 0 !important;
  text-align: center !important;
  z-index: 0 !important;
}

.pricing .section-heading h2 {
  position: static !important;
  transform: none !important;
  display: block !important;
  margin: 0 !important;
  max-width: none !important;
  color: #111827 !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.pricing .section-heading .eyebrow,
.pricing .section-heading p {
  display: none !important;
}

.pricing-grid.pricing-grid-four {
  position: relative !important;
  z-index: 1 !important;
  clear: both !important;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .pricing {
    padding-top: 56px !important;
  }

  .pricing .section-heading {
    margin-bottom: 28px !important;
  }

  .pricing .section-heading h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
    text-align: left !important;
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr !important;
  }
}

/* v140: keep the pricing intro and tariff cards in separate rows. */
.pricing {
  display: block !important;
  padding-top: clamp(72px, 8vw, 112px) !important;
}

.pricing .section-heading {
  display: grid !important;
  gap: 12px !important;
  max-width: 860px !important;
  margin: 0 auto clamp(42px, 5vw, 64px) !important;
  padding: 0 !important;
  text-align: center !important;
}

.pricing .section-heading .eyebrow,
.pricing .section-heading h2,
.pricing .section-heading p {
  position: static !important;
  display: block !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  justify-self: center !important;
}

.pricing-grid.pricing-grid-four {
  position: relative !important;
  z-index: 1 !important;
  margin-top: 0 !important;
}

.price-card {
  position: relative !important;
}

.plan-chip {
  position: static !important;
  display: inline-flex !important;
  align-self: flex-start !important;
  margin-bottom: 16px !important;
}

@media (max-width: 760px) {
  .pricing {
    padding-top: 64px !important;
  }

  .pricing .section-heading {
    margin-bottom: 32px !important;
    text-align: left !important;
  }

  .pricing .section-heading .eyebrow,
  .pricing .section-heading h2,
  .pricing .section-heading p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    justify-self: start !important;
  }
}

/* v142: pricing title only, no intro copy overlap. */
.pricing {
  display: block !important;
  padding-top: clamp(56px, 7vw, 88px) !important;
}

.pricing .section-heading {
  display: block !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 0 36px !important;
  padding: 0 !important;
  text-align: center !important;
}

.pricing .section-heading .eyebrow,
.pricing .section-heading p {
  display: none !important;
}

.pricing .section-heading h2 {
  margin: 0 !important;
  max-width: none !important;
  font-size: clamp(42px, 6vw, 76px) !important;
  line-height: 1.02 !important;
  text-align: center !important;
}

.pricing-grid.pricing-grid-four {
  clear: both !important;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .pricing .section-heading {
    margin-bottom: 26px !important;
  }

  .pricing .section-heading h2 {
    text-align: left !important;
  }
}

/* v48 public bugfix pass */
.site-header {
  margin-bottom: 56px !important;
}

.auth-modal {
  position: fixed !important;
  inset: 0 !important;
  min-height: 100dvh !important;
  padding: 24px !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: auto !important;
}

.auth-dialog {
  margin: auto !important;
  max-height: min(760px, calc(100dvh - 48px)) !important;
}

.pricing {
  display: block !important;
  max-width: 1320px !important;
  margin-inline: auto !important;
}

.pricing .section-heading {
  max-width: 760px !important;
  width: 100% !important;
  margin: 0 0 28px 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  text-align: left !important;
}

.pricing .section-heading h2,
.pricing .section-heading p,
.pricing .section-heading .eyebrow {
  text-align: left !important;
}

.pricing-grid.pricing-grid-four {
  margin-top: 0 !important;
}

.price-card {
  min-height: 560px !important;
}

.price-card strong,
.price-card small,
.price-card li,
.price-card p,
.price-card h3 {
  overflow-wrap: anywhere !important;
}

.crawl-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.crawl-summary article {
  min-height: 146px !important;
  padding: 18px !important;
  border: 1px solid rgba(115, 162, 236, 0.28) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(241,248,255,0.96)) !important;
  box-shadow: 0 18px 34px rgba(100, 138, 196, 0.12) !important;
}

.crawl-summary article strong {
  font-size: 22px !important;
  line-height: 1.18 !important;
}

.project-map-section .section-heading.centered {
  max-width: 960px !important;
}

.project-map {
  padding: clamp(30px, 4vw, 52px) !important;
}

.map-branches article {
  min-height: 252px !important;
}

@media (max-width: 1180px) {
  .pricing-grid.pricing-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .crawl-summary,
  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .pricing-grid.pricing-grid-four,
  .crawl-summary {
    grid-template-columns: 1fr !important;
  }
}

/* v47 public layout pass */
.site-header {
  margin-bottom: 44px !important;
}

.pricing {
  display: block !important;
  max-width: 1280px !important;
  margin-inline: auto !important;
}

.pricing .section-heading {
  position: relative !important;
  z-index: 2 !important;
  max-width: 640px !important;
  margin: 0 0 28px !important;
  padding-right: 0 !important;
}

.pricing-grid.pricing-grid-four {
  position: relative !important;
  z-index: 1 !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  grid-template-columns: repeat(4, minmax(250px, 1fr)) !important;
  gap: 22px !important;
}

.price-card {
  min-height: 540px !important;
}

.price-card ul {
  min-height: 164px !important;
}

.project-map {
  padding: clamp(34px, 4vw, 58px) !important;
}

.map-branches {
  align-items: stretch !important;
}

.map-branches article {
  min-height: 264px !important;
  padding: 28px 24px !important;
}

.auth-modal {
  min-height: 100dvh !important;
  align-items: center !important;
}

/* v49: stable auth modal after page scroll */
html.is-auth-open,
body.is-auth-open {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

body.is-auth-open {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
}

.auth-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: grid !important;
  place-items: center !important;
  min-height: 100dvh !important;
  padding: 22px !important;
  overflow: hidden !important;
}

.auth-modal[hidden] {
  display: none !important;
}

.auth-dialog {
  max-height: min(760px, calc(100dvh - 32px)) !important;
}

@media (max-width: 1180px) {
  .pricing-grid.pricing-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* v144: final pricing override, must stay at EOF. */
.pricing {
  display: block !important;
  padding-top: clamp(72px, 8vw, 104px) !important;
}

.pricing .section-heading {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 1120px !important;
  min-height: 0 !important;
  margin: 0 auto clamp(34px, 4vw, 52px) !important;
  padding: 0 !important;
  text-align: center !important;
  z-index: 0 !important;
}

.pricing .section-heading h2 {
  position: static !important;
  transform: none !important;
  display: block !important;
  margin: 0 !important;
  max-width: none !important;
  color: #111827 !important;
  font-size: clamp(34px, 4.2vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.pricing .section-heading .eyebrow,
.pricing .section-heading p {
  display: none !important;
}

.pricing-grid.pricing-grid-four {
  position: relative !important;
  z-index: 1 !important;
  clear: both !important;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .pricing {
    padding-top: 56px !important;
  }

  .pricing .section-heading {
    margin-bottom: 28px !important;
  }

  .pricing .section-heading h2 {
    font-size: clamp(32px, 10vw, 44px) !important;
    text-align: left !important;
  }

  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr !important;
  }
}
