/* PrivacyKit — «инспектор документов», не generic SaaS */

:root {
  --paper: #f7f4ef;
  --paper-dark: #ebe6dc;
  --bg: #f7f4ef;
  --bg-alt: #efeae0;
  --surface: #fffcf8;
  --border: #d9d2c6;
  --border-light: #e8e2d8;
  --text: #12161f;
  --text-secondary: #4a5568;
  --muted: #6b7280;
  --primary: #1a5f4a;
  --primary-hover: #134a3a;
  --primary-soft: #e8f3ef;
  --gold: #c9922a;
  --gold-soft: #faf3e0;
  --success: #1a5f4a;
  --success-soft: #e8f3ef;
  --warn: #b45309;
  --warn-soft: #fef3c7;
  --danger: #b91c1c;
  --danger-soft: #fee2e2;
  --violet: #5b4b8a;
  --violet-soft: #ede9f5;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 0 rgba(18, 22, 31, 0.06);
  --shadow: 0 8px 32px rgba(18, 22, 31, 0.08);
  --shadow-lg: 0 24px 48px rgba(26, 95, 74, 0.12);
  --font: "Manrope", system-ui, sans-serif;
  --font-serif: "Literata", Georgia, serif;
  --ring-c: 326.73;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mono: "Consolas", "SF Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* Background — ruled paper */
.bg-mesh {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(18, 22, 31, 0.04) 27px,
      rgba(18, 22, 31, 0.04) 28px
    ),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(201, 146, 42, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(26, 95, 74, 0.06), transparent 45%),
    var(--paper);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.25); }
  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex; align-items: center;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 1.15rem; color: var(--text); text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-icon { border-radius: 10px; }
.nav { display: none; gap: 1.75rem; }
.nav a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; text-decoration: none; }
.nav a:hover { color: var(--primary); }
@media (min-width: 768px) { .nav { display: flex; } .header-cta { display: inline-flex; } }
@media (max-width: 767px) { .header-cta { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: none; border-radius: var(--radius-sm); font-family: var(--font);
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  padding: 0.65rem 1.15rem; transition: all 0.2s var(--ease);
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary, .btn-inspect {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 0 #134a3a, 0 6px 16px rgba(26, 95, 74, 0.25);
  border-radius: var(--radius-sm);
}
.btn-primary:hover, .btn-inspect:hover {
  background: var(--primary-hover); text-decoration: none; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 0 #134a3a, 0 8px 20px rgba(26, 95, 74, 0.3);
}
.btn-primary:active, .btn-inspect:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #134a3a;
}
.btn-outline {
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn-spin {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero */
.hero { padding: 3rem 0 2rem; }
@media (min-width: 960px) { .hero { padding: 4.5rem 0 3rem; } }
.hero-layout {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 960px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Hero — инспектор */
.hero { padding: 2.5rem 0 1rem; }
@media (min-width: 960px) { .hero { padding: 3.5rem 0 2rem; } }

.hero-kicker {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.fz-stamp {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  transform: rotate(-3deg);
  background: var(--surface);
  box-shadow: 1px 2px 0 rgba(26, 95, 74, 0.2);
}
.fz-stamp--420 { transform: rotate(2deg); color: var(--gold); border-color: var(--gold); }
.hero-kicker-text { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.025em; margin-bottom: 1rem;
}
.title-mark {
  display: inline;
  background: linear-gradient(180deg, transparent 62%, rgba(201, 146, 42, 0.35) 62%);
  box-decoration-break: clone;
}

.scan-console { max-width: 520px; }
.console-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); margin-bottom: 0.4rem;
}
.console-row { display: flex; flex-direction: column; gap: 0.65rem; }
@media (min-width: 540px) {
  .console-row { flex-direction: row; align-items: stretch; }
  .console-input { flex: 1; }
}
.console-input {
  display: flex; align-items: center;
  background: var(--text); color: #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 0 0.85rem;
  font-family: var(--mono);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.25);
}
.console-prefix {
  font-size: 0.82rem; color: #6ee7b7; opacity: 0.85;
  user-select: none; white-space: nowrap;
}
.console-input input {
  flex: 1; border: none; background: transparent;
  font-size: 0.9rem; padding: 0.85rem 0.35rem;
  outline: none; color: #f9fafb;
  font-family: var(--mono);
}
.console-input input::placeholder { color: #6b7280; }
.console-hint { font-size: 0.75rem; color: var(--muted); margin: 0.5rem 0 0.65rem; }

.demo-link {
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 0.82rem; font-weight: 600;
  color: var(--primary); padding: 0;
}
.demo-link:hover { text-decoration: underline; }

/* Inspector panel (CSS-only, no PNG) */
.inspector {
  background: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 400px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
}
.inspector-chrome {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: #1e2430;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem; color: #9ca3af;
}
.inspector-lamp {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 8px #34d399;
  animation: lamp-pulse 2s ease-in-out infinite;
}
@keyframes lamp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.inspector-title { flex: 1; font-weight: 600; }
.inspector-tag {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.1rem 0.35rem; border-radius: 4px;
}
.inspector-viewport {
  position: relative; padding: 1rem 1rem 0.5rem;
  min-height: 200px; overflow: hidden;
}
.inspector-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #34d399, transparent);
  box-shadow: 0 0 12px #34d399;
  animation: scan-sweep 3.5s ease-in-out infinite;
  z-index: 2; pointer-events: none;
}
@keyframes scan-sweep {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.inspector-checks {
  list-style: none; display: flex; flex-direction: column; gap: 0.45rem;
}
.inspector-checks li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.45rem 0.65rem; border-radius: 6px;
  background: rgba(255,255,255,0.04);
  font-size: 0.82rem; color: #e5e7eb;
  border-left: 3px solid transparent;
}
.inspector-checks li span { font-weight: 600; }
.inspector-checks li em { font-size: 0.72rem; color: #9ca3af; font-style: normal; }
.inspector-checks li.ok { border-left-color: #34d399; }
.inspector-checks li.warn { border-left-color: var(--gold); }
.inspector-footer {
  padding: 0.85rem 1rem 1rem;
  background: #1a2030;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.inspector-grade {
  display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem;
}
.inspector-grade strong {
  font-size: 2rem; font-weight: 800; color: #34d399; line-height: 1;
}
.inspector-grade span { font-size: 0.75rem; color: #9ca3af; }
.inspector-bar {
  height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden;
}
.inspector-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--primary), #34d399);
  border-radius: 99px;
}

/* Seven lanes strip */
.lanes-section {
  padding: 1.5rem 0 2rem;
  border-bottom: 1px dashed var(--border);
}
.lanes-lead {
  text-align: center; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 1rem;
}
.check-lanes {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
}
.lane {
  font-size: 0.75rem; font-weight: 600; color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.lane span {
  color: var(--gold); font-weight: 800; margin-right: 0.35rem;
  font-size: 0.68rem;
}

.benefits-grid--layers .benefit-card--layer {
  border-top: 3px solid var(--primary);
  position: relative;
}
.layer-num {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--primary-soft);
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
  line-height: 1; margin-bottom: 0.5rem;
}

/* Timeline steps */
.timeline {
  list-style: none; max-width: 560px; margin: 2rem auto 0;
  padding-left: 1.5rem; border-left: 2px solid var(--primary);
}
.timeline li {
  position: relative; padding: 0 0 2rem 1.25rem;
}
.timeline li::before {
  content: "";
  position: absolute; left: -1.62rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline strong { display: block; font-size: 1rem; margin-bottom: 0.35rem; }
.timeline p { font-size: 0.88rem; color: var(--text-secondary); }

/* Split pricing */
.pricing-split {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch; max-width: 720px; margin: 0 auto;
}
@media (max-width: 640px) {
  .pricing-split { grid-template-columns: 1fr; }
  .price-divider { transform: rotate(90deg); margin: 0 auto; }
}
.price-free, .price-paid {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.price-paid { border-color: var(--primary); box-shadow: var(--shadow); }
.price-tag {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--primary);
}
.price-tag--gold { color: var(--gold); }
.price-num {
  font-size: 2.5rem; font-weight: 800; line-height: 1.1;
  margin: 0.5rem 0 0.35rem; color: var(--text);
}
.price-free .price-num { color: var(--primary); }
.price-free h3, .price-paid h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.price-free ul, .price-paid ul {
  list-style: none; font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 1rem;
}
.price-free li, .price-paid li { padding: 0.25rem 0; }
.price-free li::before, .price-paid li::before { content: "— "; color: var(--primary); }
.price-divider {
  align-self: center; font-size: 0.78rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
}
.alert[hidden] { display: none !important; }
.alert {
  display: flex; align-items: flex-start; gap: 0.65rem;
  margin-top: 1rem; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; max-width: 480px;
}
.alert-error { background: var(--danger-soft); border: 1px solid #fecaca; color: #991b1b; }

.consent-row {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted); line-height: 1.4;
  margin-top: 0.5rem;
}
.consent-row input { margin-top: 0.15rem; flex-shrink: 0; }
.consent-row a { color: var(--primary); }
.hero-meta { margin-top: 0.75rem; }
.hero-sub {
  font-size: 1.02rem; color: var(--text-secondary);
  max-width: 500px; margin-bottom: 1.5rem;
}
.hero-sub strong { color: var(--text); }
/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 560px; margin-bottom: 2.5rem; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-desc { color: var(--text-secondary); font-size: 1.02rem; }

.benefits-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-icon--blue { background: var(--primary-soft); color: var(--primary); }
.benefit-icon--green { background: var(--success-soft); color: var(--success); }
.benefit-icon--violet { background: var(--violet-soft); color: var(--violet); }
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* Report dashboard */
.report-wrap {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, var(--primary-soft) 0%, var(--paper) 120px);
  animation: fadeIn 0.5s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.report-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem;
}
.report-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary); background: var(--primary-soft);
  padding: 0.25rem 0.6rem; border-radius: 6px; margin-bottom: 0.5rem;
}
.url-mono { font-size: 0.82rem; color: var(--muted); word-break: break-all; }
.report-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.dashboard {
  display: grid; gap: 1.25rem;
  grid-template-columns: 300px 1fr;
  align-items: start;
}
@media (max-width: 900px) { .dashboard { grid-template-columns: 1fr; } }

.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
}
.panel-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.panel-head .panel-title { margin: 0; }
.panel-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.panel-highlight { border-color: var(--primary); background: linear-gradient(135deg, var(--primary-soft), var(--surface)); }
.panel-cta { border-color: var(--primary); background: linear-gradient(160deg, var(--primary-soft) 0%, var(--surface) 60%); }
.docs-thumb { width: 100%; margin-bottom: 1rem; border-radius: var(--radius-sm); }
.ring-wrap { position: relative; width: 130px; height: 130px; margin: 0 auto 1rem; }
.ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: var(--border); stroke-width: 8; }
.ring-progress {
  fill: none; stroke: var(--primary); stroke-width: 8;
  stroke-linecap: round; stroke-dasharray: var(--ring-c);
  stroke-dashoffset: var(--ring-c); transition: stroke-dashoffset 1.2s var(--ease), stroke 0.3s;
}
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-center span { font-size: 2rem; font-weight: 800; line-height: 1; color: var(--text); }
.ring-center small { font-size: 0.75rem; color: var(--muted); }
.domain-title { font-weight: 700; font-size: 1.05rem; word-break: break-all; margin-bottom: 0.35rem; }
.grade-pill {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  padding: 0.2rem 0.55rem; border-radius: 6px;
  background: var(--warn-soft); color: var(--warn);
}
.grade-pill--a { background: var(--success-soft); color: var(--success); }
.grade-pill--b { background: var(--warn-soft); color: var(--warn); }
.grade-pill--c, .grade-pill--d { background: var(--danger-soft); color: var(--danger); }
.platform-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }

.info-dl dt { font-size: 0.72rem; color: var(--muted); margin-top: 0.5rem; }
.info-dl dd { font-size: 0.88rem; font-weight: 600; }

.panel-score { text-align: center; }
.cta-price { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.25rem; }
.check-list { list-style: none; margin: 1rem 0; font-size: 0.85rem; color: var(--text-secondary); }
.check-list li { padding: 0.25rem 0; }
.check-list li::before { content: "✓ "; color: var(--success); font-weight: 700; }
.cta-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }

.matrix-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }
.matrix-item {
  display: flex; gap: 0.65rem; align-items: flex-start;
  padding: 0.85rem; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border-light);
  transition: transform 0.2s;
}
.matrix-item:hover { transform: scale(1.02); }
.matrix-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700;
}
.matrix-item.ok .matrix-icon { background: var(--success-soft); color: var(--success); }
.matrix-item.bad .matrix-icon { background: var(--danger-soft); color: var(--danger); }
.matrix-item strong { display: block; font-size: 0.85rem; }
.matrix-item span { font-size: 0.75rem; color: var(--muted); }

.score-pill, .count-pill {
  font-size: 0.78rem; font-weight: 700; padding: 0.25rem 0.6rem;
  border-radius: 999px; background: var(--bg-alt); color: var(--text-secondary);
}
.policy-url { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; word-break: break-all; }

.audit-grid { display: grid; gap: 0.45rem; }
.pcat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0.75rem; border-radius: 8px; font-size: 0.82rem;
  background: var(--bg); border-left: 3px solid var(--border);
}
.pcat.ok { border-left-color: var(--success); }
.pcat.bad { border-left-color: var(--danger); }

.issue-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.issue {
  padding: 1rem 1.1rem; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border-light);
  border-left: 4px solid var(--muted);
  animation: slideIn 0.4s var(--ease) backwards;
}
.issue:nth-child(1) { animation-delay: 0.05s; }
.issue:nth-child(2) { animation-delay: 0.1s; }
.issue:nth-child(3) { animation-delay: 0.15s; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.issue.critical { border-left-color: var(--danger); }
.issue.warning { border-left-color: var(--warn); }
.issue.info { border-left-color: var(--primary); }
.issue-sev { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.issue.critical .issue-sev { color: var(--danger); }
.issue.warning .issue-sev { color: var(--warn); }
.issue.info .issue-sev { color: var(--primary); }
.issue-title { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.35rem; }
.issue-detail { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.issue-fix {
  font-size: 0.82rem; padding: 0.55rem 0.7rem; border-radius: 8px;
  background: var(--success-soft); border: 1px solid #a7f3d0; color: #065f46;
}
.issue-fix::before { content: "→ "; font-weight: 700; }
.issue-risk {
  font-size: 0.78rem; color: #92400e; background: var(--warn-soft);
  border-radius: 6px; padding: 0.35rem 0.5rem; margin-bottom: 0.45rem;
}
.issue-disclaimer {
  font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.4;
}

.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-list li {
  font-size: 0.8rem; padding: 0.35rem 0.7rem; border-radius: 999px;
  background: var(--warn-soft); color: #92400e; border: 1px solid #fde68a;
}

.plan-list { padding-left: 1.25rem; color: var(--text-secondary); font-size: 0.9rem; }
.plan-list li { margin: 0.5rem 0; padding-left: 0.25rem; }

/* Steps */
.steps-row {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin-bottom: 1rem;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--text-secondary); }

/* Live stats */
.stats-strip {
  padding: 1.75rem 0;
  border-block: 1px solid var(--border);
  background-image: linear-gradient(180deg, var(--surface), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 0.75rem 0.5rem;
}
.stat-num {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* Reviews tabs */
.reviews-tabs {
  display: flex; gap: 0.5rem; justify-content: center; margin: 0 0 1.5rem;
}
.tab-btn {
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 999px; padding: 0.45rem 1.1rem;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  color: var(--text-secondary);
}
.tab-btn.is-active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.review-form {
  max-width: 560px; margin: 0 auto;
  display: grid; gap: 0.85rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
}
.review-form .form-row {
  display: grid; gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
.review-form label {
  display: grid; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
}
.review-form input, .review-form select, .review-form textarea {
  font: inherit; font-weight: 400; color: var(--text);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.55rem 0.7rem; background: #fff;
}
.review-form .form-msg { font-size: 0.85rem; color: var(--primary); margin: 0; }
.quote-card .stars { color: #d97706; letter-spacing: 0.05em; margin-bottom: 0.5rem; font-size: 0.95rem; }
@media (max-width: 560px) {
  .review-form .form-row { grid-template-columns: 1fr; }
}

/* Testimonials */
.quotes-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}
.quote-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.quote-card p { font-size: 0.92rem; color: var(--text-secondary); font-style: italic; margin-bottom: 1rem; }
.quote-card footer { font-size: 0.82rem; color: var(--muted); }

/* Pricing */
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  max-width: 420px; width: 100%;
  background: var(--surface); border: 2px solid var(--primary);
  border-radius: calc(var(--radius) + 4px); padding: 2rem;
  box-shadow: var(--shadow-lg); text-align: center;
}
.pricing-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--primary); margin-bottom: 0.5rem;
}
.pricing-card h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-amount { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-amount span { font-size: 1.25rem; color: var(--muted); font-weight: 600; }
.pricing-sub { color: var(--muted); font-size: 0.88rem; margin: 0.5rem 0 1.25rem; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 1.5rem; font-size: 0.9rem; color: var(--text-secondary); }
.pricing-list li { padding: 0.35rem 0; }
.pricing-foot { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }

/* Footer */
.footer { padding: 2.5rem 0; border-top: 1px solid var(--border); background: var(--surface); }
.footer-grid { text-align: center; }
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 800; margin-bottom: 0.75rem;
}
.footer-note { font-size: 0.82rem; color: var(--muted); max-width: 520px; margin: 0 auto 0.5rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 0.75rem 0; font-size: 0.82rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 0.75rem; color: var(--muted); }

/* Pricing docs list */
.price-docs { list-style: none; text-align: left; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.price-docs li { padding: 0.2rem 0; padding-left: 1rem; position: relative; }
.price-docs li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.price-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }

/* FAQ */
.faq-list { max-width: 720px; margin: 1.5rem auto 0; display: grid; gap: 0.65rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1.1rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 0.95rem;
}
.faq-item p { margin: 0.65rem 0 0; font-size: 0.88rem; color: var(--text-secondary); }

/* Legal pages */
.legal-page { max-width: 720px; padding: 2.5rem 1.5rem 4rem; }
.legal-page h1 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 0.5rem; }
.legal-page h2 { font-size: 1.1rem; margin: 1.75rem 0 0.65rem; }
.legal-page p, .legal-page li { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 0.65rem; }
.legal-page ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.legal-foot { margin-top: 2rem; font-size: 0.82rem; color: var(--muted); }

/* Demo report banner */
.report-badge--demo { background: var(--warn-soft); color: #92400e; border: 1px solid #fcd34d; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--surface); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
  padding: 1rem 1.5rem;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; justify-content: space-between;
}
.cookie-inner p { font-size: 0.85rem; color: var(--text-secondary); max-width: 640px; margin: 0; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
