:root {
  --bg: #f6f8fb;
  --bg-elevated: rgba(255, 255, 255, 0.82);
  --surface: #ffffff;
  --surface-strong: #fdfdfd;
  --text: #111827;
  --muted: #5f6b7a;
  --muted-strong: #334155;
  --line: rgba(15, 23, 42, 0.09);
  --line-strong: rgba(15, 23, 42, 0.14);
  --accent: #2dd4bf;
  --accent-soft: rgba(45, 212, 191, 0.16);
  --accent-2: #2563eb;
  --accent-pop: #20bfea;
  --accent-pop-soft: rgba(32, 191, 234, 0.12);
  --accent-pop-line: rgba(32, 191, 234, 0.22);
  --ink: #0f172a;
  --success: #0f766e;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(246, 248, 251, 0.95)),
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  color: var(--text);
  line-height: 1.55;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.3);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section + .section {
  margin-top: 64px;
}

#quick-analysis,
#how,
#dashboards,
#pricing,
#lead {
  scroll-margin-top: 96px;
}

.section-tight {
  padding: 4.25rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.65rem 0 0;
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.wordmark,
.footer-brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.nav-cta {
  margin-left: 0.25rem;
}

.site-nav a:not(.button):hover,
.footer-links a:hover,
.footer-meta a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.button-primary:hover {
  background: #1e293b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  background: #fff;
  border-color: rgba(45, 212, 191, 0.25);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 3.1rem;
}

.hero::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -120px;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(45, 212, 191, 0.1),
    rgba(45, 212, 191, 0.05),
    transparent 70%
  );
  pointer-events: none;
}

.hero-grid,
.lead-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.hero-copy > * + * {
  margin-top: 1.05rem;
}

.hero-stack {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-label {
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 1rem;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 12ch;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.2vw, 4.05rem);
  margin-bottom: 0;
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-subheadline,
.section-heading p,
.hero-microcopy,
.bullet-card p,
.card p,
.cta-band p,
.site-footer p,
.privacy-note,
small {
  color: var(--muted);
}

.hero-subheadline {
  margin-top: 0;
  max-width: 52ch;
  font-size: 1.1rem;
  background: transparent;
}

.hero-proof {
  margin-top: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.98rem;
  background: transparent;
}

.hero-microcopy {
  margin-top: 0.1rem;
  max-width: 520px;
  color: var(--muted-strong);
  background: transparent;
}

.hero-scan-note {
  margin-top: 0;
  max-width: 640px;
  white-space: normal;
  line-height: 1.45;
}

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 700;
}

.tool-row-label {
  margin-top: 1.2rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

.tool-icons {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 0.2rem;
  background: transparent;
}

.tool {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: rgba(15, 23, 42, 0.75);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.tool:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.tool-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.tool-label {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.7);
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.2rem;
}

.hero-scan-now {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.15rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-scan-now:hover {
  color: var(--text);
}

.card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-panel {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.portfolio-preview {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
  animation: previewIn 700ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes previewIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-preview,
  .mini-chart.bars span {
    animation: none;
  }
}

.panel-label,
.card-kicker {
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.preview-kpis {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.preview-kpi {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.preview-kpi:nth-child(2) {
  animation-delay: 60ms;
}

.preview-kpi:nth-child(3) {
  animation-delay: 120ms;
}

.preview-kpi:nth-child(4) {
  animation-delay: 180ms;
}

.portfolio-preview .kpi-value {
  margin-top: 0.35rem;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}

.portfolio-preview .kpi-meta {
  margin-top: 0.25rem;
  color: var(--muted-strong);
  font-size: 0.86rem;
  white-space: nowrap;
}

.preview-kpi:last-child {
  grid-column: 1 / -1;
}

.hero-signal-callout {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  animation: heroSignalIn 320ms ease-out both;
}

.hero-signal-label {
  color: var(--muted-strong);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-signal-title {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.hero-signal-body {
  margin-top: 0.45rem;
  color: var(--muted-strong);
  font-size: 0.93rem;
  line-height: 1.45;
}

.hero-signal-meta {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

@keyframes heroSignalIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preview-lower {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.card-lite {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.preview-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.preview-pill {
  display: inline-flex;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0f766e;
  border: 1px solid rgba(45, 212, 191, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
}

.preview-table-grid {
  margin-top: 0.85rem;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

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

.section-heading.narrow {
  max-width: 48rem;
}

.signals {
  padding: 120px 0;
}

.section-intro {
  max-width: 40rem;
}

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

.signal-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.signal-card h3 {
  margin-bottom: 8px;
}

.signal-card p {
  color: var(--muted);
}

.signal-card,
.insight-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card {
  will-change: transform, opacity;
}

.dataset-strip {
  margin-top: -0.25rem;
  margin-bottom: 1.5rem;
  padding: 0.95rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.dataset-strip-note {
  margin: 0 0 0.75rem;
  color: var(--muted-strong);
  font-weight: 600;
}

.dataset-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.dataset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dataset-chip {
  padding: 0.32rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.dataset-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(45, 212, 191, 0.18);
}

.dataset-chips-primary .dataset-chip {
  color: var(--muted-strong);
  border-color: rgba(15, 23, 42, 0.12);
}

.dataset-chips-secondary {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dataset-chips-secondary.is-open {
  opacity: 1;
  transform: translateY(0);
}

.dataset-chips-secondary .dataset-chip {
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-weight: 600;
}

.dataset-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.70);
  color: var(--muted-strong);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.dataset-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(45, 212, 191, 0.18);
}

.insight-line {
  margin-top: 0.5rem;
  color: var(--muted);
}

.insight-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--muted-strong);
  font-weight: 600;
}

.insight-link:hover {
  color: var(--text);
}

@media (max-width: 600px) {
  .dataset-strip {
    padding: 0.85rem 0.9rem;
  }

  .how-capability-toggle,
  .dataset-toggle {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-signal-callout,
  .dataset-chips-secondary,
  .how-capability-chips-secondary {
    animation: none;
    transition: none;
  }

  .dynamic-section {
    transition: none;
    transform: none;
  }
}

.signal-card:hover,
.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bullet-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

.bullet-card,
.step-card,
.insight-card,
.audience-card,
.lead-card {
  padding: 1.4rem;
}

.audience-card {
  padding: 1.6rem;
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-cta {
  margin-top: 1.5rem;
}

.how-capability-strip {
  margin: -0.5rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.how-capability-title {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
}

.how-capability-row {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.how-capability-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.how-capability-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.29rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.how-capability-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.how-capability-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 212, 191, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.how-capability-chips-secondary {
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.how-capability-chips-secondary.is-open {
  opacity: 1;
  transform: translateY(0);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.lead-section {
  padding: 4.75rem 0 5rem;
}

.pricing-section,
.lead-section {
  position: relative;
}

.quick-analysis-section .section-heading {
  margin-bottom: 1.4rem;
}

.quick-analysis-section .lead-demo {
  max-width: 920px;
  margin: 0 auto;
}

.quick-analysis-section .demo-card {
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.12);
}

.quick-analysis-note {
  margin-top: 0.75rem;
  color: var(--muted-strong);
  font-weight: 600;
}

.pricing-section::before,
.lead-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 2rem), var(--container));
  transform: translateX(-50%);
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.lead-copy {
  max-width: 68ch;
}

.section-eyebrow {
  display: inline-block;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-sub {
  margin-top: 1rem;
  color: var(--muted);
}

.lead-steps {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}

.lead-step {
  padding: 1rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.lead-step:last-child {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.step-title {
  color: var(--muted-strong);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lead-note {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-description {
  max-width: 62ch;
  text-wrap: balance;
}

.lead-demo .demo-card {
  width: 100%;
}

.lead-form-row {
  margin-top: 2rem;
}

.lead-form-card {
  padding: 1.6rem;
}

.demo-analyzer {
  margin-bottom: 0;
}

.demo-card {
  padding: 1.7rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.demo-header {
  display: grid;
  gap: 0.45rem;
}

.demo-sub {
  color: var(--muted);
}

.dropzone {
  display: block;
  margin-top: 1.25rem;
  cursor: pointer;
}

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

.dz-inner {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  min-height: 12.4rem;
  padding: 1.75rem;
  border: 1.5px dashed rgba(15, 23, 42, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 212, 191, 0.06), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.92));
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.dropzone:hover .dz-inner,
.dropzone:focus-within .dz-inner {
  border-color: rgba(45, 212, 191, 0.42);
  box-shadow: 0 16px 34px rgba(45, 212, 191, 0.12);
  transform: translateY(-1px);
}

.dropzone.is-dragover .dz-inner {
  border-color: rgba(16, 185, 129, 0.58);
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.09), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 252, 249, 0.96));
  transform: translateY(-2px);
}

.dz-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.dz-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: #0f766e;
  stroke-width: 1.65;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dz-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.dz-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}


.demo-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--muted-strong);
  font-weight: 600;
}

.demo-status.is-loading::after {
  content: " . . .";
  display: inline-block;
  margin-left: 0.15rem;
  animation: loadingDots 1s steps(4, end) infinite;
}

.demo-results {
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.demo-results.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scan-section + .scan-section {
  margin-top: 1rem;
}

.scan-section-head h4 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.scan-summary {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.09);
}

.scan-summary .scan-section-head h4 {
  margin-bottom: 0.45rem;
}

.results-top {
  display: grid;
  gap: 0.75rem;
}

.results-kpi {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.results-kpi-wide {
  grid-column: 1 / -1;
}

.kpi-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kpi-value {
  margin-top: 0.35rem;
  font-size: 1.45rem;
  font-weight: 720;
  letter-spacing: -0.04em;
}

.kpi-value-small {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.scan-summary-line {
  margin: 0 0 0.95rem;
  color: #0f172a;
  font-weight: 720;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -0.015em;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.results-grid {
  display: grid;
  gap: 0.9rem;
}

.result-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.result-card.visible {
  opacity: 1;
  transform: none;
}

.scan-highlights-wrap {
  margin-top: 1.55rem;
}

.scan-highlights {
  margin-top: 0.55rem;
  gap: 1rem;
}

.highlight-card {
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  padding: 1.2rem;
}

.highlight-priority {
  background:
    radial-gradient(circle at 10% 8%, rgba(45, 212, 191, 0.17), transparent 48%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.99), rgba(244, 253, 250, 0.97));
  border-color: rgba(45, 212, 191, 0.44);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.scan-highlights-wrap .scan-section-head h4 {
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.018em;
  position: relative;
  padding-left: 0.75rem;
}

.scan-highlights-wrap .scan-section-head h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.2rem;
  width: 3px;
  border-radius: 99px;
  background: rgba(15, 118, 110, 0.7);
}

.scan-signals-wrap {
  margin-top: 1.2rem;
}

.scan-signals {
  display: grid;
  gap: 0.8rem;
}

.signal-card {
  padding: 1rem 1.05rem;
}

.result-tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.28rem 0.55rem;
  background: var(--accent-soft);
  color: #0f766e;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-title {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.result-body {
  margin-top: 0.45rem;
  color: var(--muted);
}

.result-detail {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.scan-cta-wrap {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.11);
}

.scan-cta-bridge {
  margin: 0 0 0.8rem;
  color: var(--muted-strong);
  font-weight: 600;
}

.scan-cta-grid {
  display: grid;
  gap: 0.9rem;
}

.scan-cta-card {
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.scan-cta-card h5 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.scan-cta-card p {
  margin: 0.5rem 0 0.85rem;
  color: var(--muted);
}

.portfolio-grid {
  align-items: stretch;
}

.portfolio-card {
  padding: 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dashboards-bridge {
  margin-top: 0.35rem;
  color: var(--muted-strong);
  font-weight: 600;
}

.dashboards-section {
  padding-top: 4.75rem;
}

.dash-shell {
  padding: 1.25rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(45, 212, 191, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 248, 252, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
}

.dash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.dash-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted-strong);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.dash-tab:hover,
.dash-tab.is-active {
  background: #fff;
  border-color: rgba(45, 212, 191, 0.25);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.dash-tab.is-active {
  box-shadow:
    inset 0 -2px 0 var(--accent),
    0 12px 24px rgba(15, 23, 42, 0.08),
    0 0 0 3px var(--accent-soft);
}

.dash-tab:hover {
  transform: translateY(-1px);
}

.dash-panel {
  display: none;
}

.dash-panel.is-active {
  display: block;
}

.dash-frame {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.dash-frame-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dash-frame-header p {
  color: var(--muted);
}

.dash-signal {
  margin-bottom: 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.dash-signal-label {
  display: inline-flex;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-signal p {
  margin-top: 0.28rem;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.dash-badge {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  background: var(--accent-soft);
  color: #0f766e;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.dash-kpis {
  display: grid;
  gap: 0.9rem;
}

.dash-kpi-card {
  padding: 1rem;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dash-kpi-card:hover,
.portfolio-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.dash-kpi-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.dash-kpi-value {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.dash-kpi-meta {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.dash-lower {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.dash-chart-card,
.dash-table-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
}

.dash-chart-header h4 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.mini-chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 0.9rem;
  min-height: 14.5rem;
  margin-top: 1rem;
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background-image: linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 100% 25%;
  background-position: 0 1rem;
}

.mini-chart.bars span {
  display: block;
  flex: 1;
  min-height: 10px;
  border-radius: 14px 14px 10px 10px;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.96), rgba(59, 130, 246, 0.56));
  transform-origin: bottom;
  animation: barIn 500ms cubic-bezier(.2,.8,.2,1) both;
}

.mini-chart.bars span:nth-child(2) {
  animation-delay: 60ms;
}

.mini-chart.bars span:nth-child(3) {
  animation-delay: 120ms;
}

.mini-chart.bars span:nth-child(4) {
  animation-delay: 180ms;
}

.mini-chart.bars span:nth-child(5) {
  animation-delay: 240ms;
}

.mini-chart.bars span:nth-child(6) {
  animation-delay: 300ms;
}

.mini-chart.bars.risk-bars span {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(239, 68, 68, 0.5));
}

@keyframes barIn {
  from {
    opacity: 0;
    transform: scaleY(0.85);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.mini-chart.line {
  display: block;
}

.mini-chart.line::before {
  content: "";
  position: absolute;
  inset: 1rem 0 0.25rem;
  background:
    linear-gradient(120deg, transparent 6%, rgba(37, 99, 235, 0.25) 6%, rgba(37, 99, 235, 0.25) 11%, transparent 11%, transparent 23%, rgba(37, 99, 235, 0.32) 23%, rgba(37, 99, 235, 0.32) 29%, transparent 29%, transparent 42%, rgba(37, 99, 235, 0.4) 42%, rgba(37, 99, 235, 0.4) 48%, transparent 48%, transparent 61%, rgba(37, 99, 235, 0.5) 61%, rgba(37, 99, 235, 0.5) 67%, transparent 67%, transparent 78%, rgba(37, 99, 235, 0.62) 78%, rgba(37, 99, 235, 0.62) 84%, transparent 84%);
  clip-path: polygon(4% 72%, 20% 59%, 36% 63%, 52% 42%, 68% 36%, 84% 24%, 84% 100%, 4% 100%);
}

.mini-chart.line span {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent-2);
  transform: translate(-50%, 50%);
}

.mini-chart.line.commission-trend::before {
  background: rgba(209, 213, 219, 0.38);
  clip-path: polygon(4% 48%, 20% 45%, 36% 42%, 52% 40%, 68% 38%, 84% 36%, 84% 39%, 68% 41%, 52% 43%, 36% 45%, 20% 48%, 4% 51%);
}

.mini-chart.line.commission-trend::after {
  content: "";
  position: absolute;
  inset: 1rem 0 0.25rem;
  background: rgba(20, 184, 166, 0.38);
  clip-path: polygon(4% 50%, 20% 47%, 36% 45%, 52% 48%, 68% 52%, 84% 62%, 84% 65%, 68% 55%, 52% 51%, 36% 48%, 20% 50%, 4% 53%);
}

.commission-trend span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
}

.commission-trend .expected {
  background: #d1d5db;
}

.commission-trend .actual {
  background: #14b8a6;
}

.commission-trend .highlight {
  transform: translate(-50%, 50%) scale(1.3);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15);
}

.chart-legend {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.legend-dot {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 0.3rem;
}

.legend-dot.expected {
  background: #d1d5db;
}

.legend-dot.actual {
  background: #14b8a6;
}

.dash-table {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.dash-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 0.75rem;
  padding: 0.75rem 0.15rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.dash-row-head {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-row-commission {
  grid-template-columns: 1.35fr 0.88fr 0.88fr 0.88fr;
}

.variance {
  font-weight: 700;
}

.variance.high {
  color: #dc2626;
}

.variance.medium {
  color: #d97706;
}

.variance.low {
  color: #6b7280;
}

.demo-next {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.dynamic-section {
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

.dynamic-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
}

textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.privacy-note {
  margin: 0;
  font-size: 0.95rem;
}

.form-success {
  padding: 0.95rem 1rem;
  background: rgba(15, 118, 110, 0.08);
  color: var(--success);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 16px;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  background: var(--accent-soft);
  color: var(--accent-2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-section .section-heading {
  margin-bottom: 1.25rem;
}

.levels {
  margin-top: 1.45rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.level {
  padding: 1.15rem 1.25rem;
  background: transparent;
}

.level + .level {
  padding-top: 1.25rem;
}

.level-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.level-title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.level-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0f766e;
  border: 1px solid rgba(45, 212, 191, 0.25);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.level-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--muted-strong);
  font-weight: 650;
  font-size: 0.85rem;
}

.level-desc {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.42;
  text-wrap: balance;
}

.level-body {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.85rem;
}

.level-col {
  display: grid;
  gap: 0.35rem;
}

.level-label {
  color: rgba(15, 23, 42, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.level-list {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.level-list li + li {
  margin-top: 0.45rem;
}

.level-note {
  margin-top: 0.45rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.42;
}

.level-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
}

.pricing-cta-row {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
}

.pricing-cta-copy h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.pricing-cta-copy p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.cta-inline {
  margin-left: 0.35rem;
  color: var(--muted-strong);
  font-weight: 600;
  text-decoration: none;
}

.cta-inline:hover {
  color: var(--text);
}

.cta-secondary-line {
  margin-top: 0.5rem;
  color: var(--muted);
}

.pricing-cta-actions {
  display: grid;
  justify-items: end;
  gap: 0.6rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.upload-site-footer {
  max-width: 1200px;
  margin: 120px auto 0;
  max-height: 320px;
  padding: 0 24px 48px;
  overflow: hidden;
  transition:
    opacity 260ms ease,
    transform 320ms ease,
    max-height 360ms ease,
    margin 320ms ease,
    padding 320ms ease;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-meta {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.upload-footer-shell {
  gap: 1.25rem 2rem;
  align-items: flex-start;
}

.upload-footer-meta {
  justify-items: end;
  text-align: right;
}

@keyframes loadingDots {
  0%,
  20% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

@media (min-width: 720px) {
  .hero-grid,
  .lead-layout,
  .bullet-grid,
  .three-up,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field-full {
    grid-column: 1 / -1;
  }

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

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

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

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

  .scan-signals,
  .scan-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .level-body {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  }

  .lead-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .three-up,
  .insights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dash-lower {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

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

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

  #for .card-grid.four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scan-cta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 799px) {
  .site-header {
    position: static;
    padding-top: 1rem;
  }

  .nav-shell,
  .site-nav,
  .cta-band,
  .form-actions,
  .demo-next {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    gap: 0.8rem;
  }

  .nav-cta {
    width: 100%;
  }

  .pricing-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-cta-actions {
    justify-items: start;
  }

  .pricing-cta-actions .button {
    width: 100%;
  }

  .form-actions .button {
    width: 100%;
  }

  .section {
    padding: 4.25rem 0;
  }

  .lead-description {
    max-width: 100%;
  }

  h1,
  .hero-subheadline,
  .hero-microcopy {
    max-width: none;
  }

  .tool-icons {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
  }

  .tool {
    flex: 0 0 auto;
  }

  .hero-actions {
    align-items: stretch;
  }

  .dash-frame-header {
    flex-direction: column;
    align-items: stretch;
  }

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

  .preview-subhead {
    flex-direction: column;
    align-items: flex-start;
  }

  .signals {
    padding: 4.25rem 0;
  }

  .signals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .demo-card {
    padding: 1.1rem;
  }

  .lead-form-card {
    padding: 1.1rem;
  }

  .dash-shell,
  .dash-frame {
    padding: 1rem;
  }

  .dz-inner {
    min-height: 10rem;
  }
}

@media (max-width: 900px) {
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lead-copy {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .tool {
    padding: 9px 10px;
  }

  .tool-label {
    font-size: 12px;
  }

  .dash-tabs {
    gap: 0.5rem;
  }

  .dash-tab {
    width: 100%;
  }

  .dash-kpis,
  .preview-kpis,
  .dash-lower,
  .preview-lower,
  .results-top,
  .results-grid,
  .scan-signals,
  .scan-cta-grid {
    grid-template-columns: 1fr;
  }

  .dash-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .results-top,
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.upload-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: start;
  justify-items: center;
  max-height: 2400px;
  padding: clamp(6.1rem, 14vh, 7.9rem) 1rem clamp(7.9rem, 15.8vh, 9.9rem);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  transition:
    filter 180ms ease,
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.upload-shell.hero-blurred {
  filter: blur(4.25px);
  opacity: 0.7;
}

.upload-shell.hero-exit {
  opacity: 0;
  transform: translateY(-18px) scale(0.985);
  pointer-events: none;
}

body.has-analysis .upload-shell {
  display: none;
}

.upload-header {
  position: relative;
  top: auto;
  z-index: 10;
  padding: 1.4rem 1.5rem 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.upload-nav {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.upload-brand {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-text {
  display: inline-block;
  color: #1f2937;
}

.upload-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  color: #475569;
}

.upload-nav-actions,
.upload-nav-actions-default,
.upload-nav-actions-analysis {
  display: flex;
  align-items: center;
}

.upload-nav-actions {
  justify-content: flex-end;
}

.upload-nav-actions-default {
  justify-content: flex-end;
}

.upload-nav-actions-analysis {
  display: none;
  gap: 0.7rem;
}

.upload-nav-item {
  position: relative;
}

.upload-nav-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.nav-link {
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(51, 65, 85, 0.72);
  transition: color 140ms ease, letter-spacing 140ms ease;
}

.nav-link:hover,
.upload-nav-item.is-open .nav-link {
  color: rgba(17, 24, 39, 1);
  letter-spacing: 0.025em;
}

.nav-link.active {
  color: rgba(17, 24, 39, 1);
}

.upload-nav-reveal {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 110px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 140ms ease,
    transform 140ms ease,
    max-height 140ms ease;
}

.upload-nav-reveal::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.upload-nav-reveal.is-open {
  opacity: 1;
  max-height: 420px;
  transform: translateY(0);
  pointer-events: auto;
}

.upload-nav-reveal-panel {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: none;
  padding: 34px 0 22px;
  background:
    linear-gradient(180deg, rgba(252, 253, 254, 0.96), rgba(248, 250, 251, 0.92));
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
  backdrop-filter: blur(10px);
}

.upload-nav-reveal-panel.is-open {
  display: block;
}

.upload-nav-panel-title {
  margin: 0 0 32px;
  color: rgba(17, 24, 39, 0.62);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.upload-nav-panel-links {
  display: grid;
  gap: 34px;
}

.upload-nav-panel-link {
  color: rgba(15, 23, 42, 0.92);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.08;
  transition: color 150ms ease, opacity 150ms ease, transform 150ms ease;
}

.upload-nav-panel-links:hover .upload-nav-panel-link:not(:hover),
.upload-nav-panel-links:focus-within .upload-nav-panel-link:not(:focus-visible) {
  color: rgba(15, 23, 42, 0.48);
}

.upload-nav-panel-link:hover,
.upload-nav-panel-link:focus-visible {
  color: rgba(15, 23, 42, 1);
  transform: translateX(2px);
}

.upload-nav-reveal-panel[data-panel="analyze"] {
  max-width: 1080px;
}

.upload-nav-reveal-panel[data-panel="analyze"] .upload-nav-panel-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 96px;
  row-gap: 36px;
}

.upload-nav-reveal-panel[data-panel="worth"] .upload-nav-panel-links {
  gap: 38px;
}

.upload-nav-reveal-panel[data-panel="benchmark"] .upload-nav-panel-links {
  gap: 30px;
}

.upload-nav-reveal-panel[data-panel="benchmark"] .upload-nav-panel-link {
  font-size: clamp(1.8rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.upload-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  transition: all 0.15s ease;
}

.upload-nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(15, 23, 42, 0.18);
}

.upload-nav-cta-primary {
  background: #0f172a;
  color: #fff;
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}

.upload-nav-cta-primary:hover {
  background: #1e293b;
  border-color: rgba(15, 23, 42, 0.22);
}

.upload-nav-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(15, 23, 42, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
  transition: all 0.15s ease;
}

.upload-nav-action-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.16);
}

body.has-analysis .upload-nav-links,
body.has-analysis .upload-nav-reveal {
  display: none;
}

body.has-analysis .upload-nav-actions-default {
  display: none;
}

body.has-analysis .upload-nav-actions-analysis {
  display: flex;
}

.upload-hero {
  width: min(100%, 1200px);
  display: grid;
  justify-items: center;
  gap: 2.35rem;
  text-align: center;
}

.upload-hero h1 {
  margin: 0 0 20px;
  width: min(100%, 16ch);
  font-family: "Inter", sans-serif;
  font-size: clamp(3.05rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 720;
  color: #1f2937;
  text-wrap: balance;
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 900px) {
  .upload-hero h1 {
    white-space: nowrap;
  }
}

#upload-hero-title.hero-title-exit {
  opacity: 0;
  transform: translateY(-12px);
}

.upload-hero .hero-sub {
  max-width: 31rem;
  margin: 0;
  color: rgba(95, 107, 122, 0.9);
  font-size: 1.01rem;
  line-height: 1.62;
  text-wrap: balance;
}

.upload-dropzone {
  position: relative;
  width: 100%;
  max-width: 1140px;
  display: grid;
  justify-items: center;
  gap: 0;
  margin-top: 0.7rem;
  padding: 70px 52px 52px;
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 30px;
  background:
    radial-gradient(ellipse 84% 52% at 50% 0%, rgba(45, 212, 191, 0.12), rgba(126, 236, 243, 0.07) 36%, transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.975));
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
  overflow: hidden;
}

.upload-dropzone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24%;
  width: 94%;
  height: 58%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    rgba(45, 212, 191, 0.14),
    rgba(126, 236, 243, 0.08) 42%,
    transparent 72%
  );
  opacity: 0.34;
  pointer-events: none;
  animation: uploadDropzoneGlow 14s ease-in-out infinite;
}

.upload-dropzone::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 62%;
  height: 54%;
  border-radius: 999px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(32, 191, 234, 0.08),
      rgba(45, 212, 191, 0.05) 44%,
      transparent 74%
    );
  opacity: 0.2;
  pointer-events: none;
  animation: uploadDropzoneDrift 12s ease-in-out infinite;
}

.upload-dropzone > * {
  position: relative;
  z-index: 1;
}

.upload-shell.is-drag-active .upload-dropzone {
  border-color: rgba(45, 212, 191, 0.14);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.084);
}

.upload-shell.is-drag-active .upload-dropzone::before {
  opacity: 0.56;
}

.upload-shell.is-drag-active .upload-dropzone::after {
  opacity: 0.28;
}

.upload-dropzone:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 212, 191, 0.16);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.088);
}

.upload-dropzone.is-dragover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.24);
  background:
    radial-gradient(ellipse 88% 56% at 50% 0%, rgba(45, 212, 191, 0.16), rgba(126, 236, 243, 0.1) 40%, transparent 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.965), rgba(246, 251, 252, 0.99));
  box-shadow: 0 30px 68px rgba(15, 23, 42, 0.092);
}

.upload-dropzone.is-dragover::before {
  opacity: 0.68;
}

.upload-dropzone-title {
  margin: 0 0 24px;
  color: rgba(51, 65, 85, 0.92);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  margin-top: 0;
  padding: 0.92rem 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
  transition: all 0.15s ease;
}

.upload-button:hover {
  transform: translateY(-1px);
  background: rgba(45, 212, 191, 0.06);
  border-color: rgba(15, 23, 42, 0.18);
}

.upload-helper {
  width: min(100%, 32rem);
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  color: rgba(95, 107, 122, 0.74);
  font-size: 0.79rem;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.upload-sample-link {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  opacity: 1;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 140ms ease, opacity 140ms ease, text-decoration-color 140ms ease;
}

.upload-sample-link:hover {
  color: var(--muted-strong);
  opacity: 0.96;
  text-decoration: underline;
  text-decoration-color: rgba(51, 65, 85, 0.38);
}

.upload-support-line {
  margin: 20px 0 0;
  color: rgba(95, 107, 122, 0.74);
  font-size: 0.79rem;
  line-height: 1.45;
  text-align: center;
}

.upload-support-line a {
  color: rgba(51, 65, 85, 0.82);
}

.upload-support-line a:hover {
  color: rgba(15, 23, 42, 0.96);
}

@keyframes uploadDropzoneGlow {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-50%) translateY(0) scaleX(1) scaleY(1);
  }

  50% {
    opacity: 0.42;
    transform: translateX(-50%) translateY(6px) scaleX(1.04) scaleY(1.08);
  }
}

@keyframes uploadDropzoneDrift {
  0%,
  100% {
    opacity: 0.16;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.26;
    transform: translate3d(-10px, -6px, 0) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .upload-dropzone::before,
  .upload-dropzone::after {
    animation: none;
  }
}

.signals-section {
  max-width: 1200px;
  margin: 260px auto 0;
  padding: 74px 28px 8px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(246, 249, 252, 0.7), rgba(246, 249, 252, 0.24)),
    radial-gradient(circle at 14% 18%, rgba(191, 219, 254, 0.12), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(45, 212, 191, 0.05), transparent 24%);
  border: 1px solid rgba(226, 232, 240, 0.42);
}

.signals-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 88px;
}

.signals-eyebrow {
  max-width: 44rem;
  font-size: 15px;
  color: #64748b;
  margin: 18px auto 0;
  line-height: 1.75;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.signals-title {
  max-width: 15ch;
  margin: 0 auto;
  font-size: clamp(2.45rem, 4vw, 3.2rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.01;
  text-wrap: balance;
}

.signals-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 28px;
}

.signals-section .signal-card {
  padding: 40px 38px 34px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.84);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.045);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.signals-section .signal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.08);
  border-color: rgba(148, 163, 184, 0.34);
}

.signals-section .signal-card-featured {
  grid-row: span 2;
  background:
    radial-gradient(circle at 90% 10%, rgba(45, 212, 191, 0.14), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(191, 219, 254, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 252, 0.96));
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.055);
}

.signals-section .signal-card h3 {
  max-width: 18ch;
  font-size: 1.08rem;
  margin-bottom: 14px;
  color: rgba(15, 23, 42, 0.92);
  letter-spacing: -0.02em;
}

.signal-metric {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.3rem, 4.6vw, 3.35rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.signals-section .signal-card p {
  font-size: 0.95rem;
  color: #667085;
  line-height: 1.62;
}

.signal-source {
  margin-top: 22px;
  color: rgba(51, 65, 85, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 799px) {
  .signals-section {
    margin: 168px auto 0;
    padding: 44px 20px 6px;
    border-radius: 24px;
  }

  .signals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.industries-section {
  max-width: 1200px;
  margin-top: 182px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 0.62), rgba(250, 248, 244, 0.18)),
    radial-gradient(circle at 50% 0, rgba(251, 191, 36, 0.06), transparent 26%);
  border: 1px solid rgba(229, 231, 235, 0.38);
}

.industries-intro {
  max-width: 820px;
  margin: 0 auto 82px;
  padding: 72px 22px 0;
  text-align: center;
}

.industries-title {
  max-width: 15ch;
  font-size: clamp(2.45rem, 4vw, 3.25rem);
  margin: 0 auto 18px;
  text-align: center;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .industries-title {
    white-space: nowrap;
    transform: none;
  }
}

.industries-support {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.industries-sources {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.industries-sources::-webkit-scrollbar {
  display: none;
}

.industries-source {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.82));
  color: rgba(51, 65, 85, 0.82);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.035);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0 22px 26px;
}

.industry-card {
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 251, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.72);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.035);
}

.industry-card-featured {
  background:
    radial-gradient(circle at 90% 12%, rgba(45, 212, 191, 0.12), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(253, 224, 71, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border-color: rgba(186, 230, 253, 0.68);
}

.industry-card h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.92);
}

.industry-card p {
  max-width: 28ch;
  font-size: 0.95rem;
  color: #667085;
  line-height: 1.62;
}

@media (max-width: 799px) {
  .industries-section {
    margin: 148px auto 0;
    border-radius: 24px;
  }

  .industries-intro {
    margin-bottom: 56px;
    padding: 44px 0 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    padding: 0 0 24px;
  }
}

.stories-section {
  max-width: 1200px;
  margin: 284px auto 0;
  padding: 0 24px 156px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.22), rgba(247, 249, 252, 0)),
    radial-gradient(circle at 12% 4%, rgba(191, 219, 254, 0.08), transparent 24%);
  border: 0;
}

.stories-title {
  max-width: 12ch;
  font-size: clamp(2.45rem, 3.8vw, 3.15rem);
  text-align: center;
  margin: 0 auto 68px;
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

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

.story-card {
  padding: 38px 36px 36px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 251, 0.96));
  border: 1px solid rgba(226, 232, 240, 0.62);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.025);
}

.story-card h3 {
  font-size: 1.18rem;
  margin-bottom: 16px;
  color: rgba(15, 23, 42, 0.94);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.04;
}

.story-card p {
  color: #667085;
  font-size: 0.96rem;
  line-height: 1.62;
}

.story-signal {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.62);
  color: rgba(51, 65, 85, 0.9);
  font-weight: 500;
}

.benchmark-section {
  max-width: 1360px;
  margin: 258px auto 0;
  padding: 0 36px;
}

.benchmark-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: flex-start;
  padding: 76px 34px;
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0.96), rgba(247, 248, 250, 0.9)),
    radial-gradient(circle at 18% 0, rgba(45, 212, 191, 0.08), transparent 22%),
    radial-gradient(circle at 86% 8%, rgba(96, 165, 250, 0.08), transparent 24%);
  border: 1px solid rgba(226, 232, 240, 0.78);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.04);
}

.benchmark-intro {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-top: 8px;
  max-width: 400px;
}

.benchmark-eyebrow {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}

.benchmark-intro h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.7rem, 3.8vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #0b1220;
  text-wrap: balance;
}

.benchmark-intro h2 span {
  white-space: nowrap;
}

.benchmark-support {
  margin: 22px 0 0;
  max-width: 27ch;
  color: rgba(15, 23, 42, 0.74);
  font-size: 0.98rem;
  line-height: 1.68;
  letter-spacing: -0.014em;
  text-wrap: balance;
}

.benchmark-microcopy {
  margin: 16px 0 0;
  max-width: 22ch;
  color: rgba(51, 65, 85, 0.54);
  font-size: 0.92rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.benchmark-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.benchmark-card {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  padding: 32px 34px 32px;
  border-radius: 34px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benchmark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.benchmark-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.benchmark-card-mint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.9));
}

.benchmark-card-mint::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(45, 212, 191, 0.16), transparent 34%),
    radial-gradient(circle at 85% 78%, rgba(186, 230, 253, 0.14), transparent 38%);
}

.benchmark-card-blue {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.9));
}

.benchmark-card-blue::before {
  background:
    radial-gradient(circle at 22% 14%, rgba(96, 165, 250, 0.16), transparent 32%),
    radial-gradient(circle at 82% 74%, rgba(191, 219, 254, 0.14), transparent 38%);
}

.benchmark-card-peach {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.9));
}

.benchmark-card-peach::before {
  background:
    radial-gradient(circle at 20% 16%, rgba(251, 191, 153, 0.18), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(254, 215, 170, 0.14), transparent 40%);
}

.benchmark-card-lilac {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.9));
}

.benchmark-card-lilac::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(196, 181, 253, 0.18), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(233, 213, 255, 0.14), transparent 38%);
}

.benchmark-card-sand {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.9));
}

.benchmark-card-sand::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(253, 230, 138, 0.18), transparent 32%),
    radial-gradient(circle at 84% 80%, rgba(254, 240, 138, 0.12), transparent 40%);
}

.benchmark-card > * {
  position: relative;
  z-index: 2;
}

.benchmark-card h3 {
  margin: 0 0 14px;
  color: rgba(15, 23, 42, 0.78);
  font-size: 1rem;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.benchmark-card-metric {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  color: #0f172a;
  font-weight: 780;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.benchmark-card-body {
  margin: 16px 0 0;
  max-width: 24ch;
  color: rgba(51, 65, 85, 0.9);
  font-size: 0.97rem;
  line-height: 1.56;
  letter-spacing: -0.012em;
}

.benchmark-card-meta {
  margin: 16px 0 0;
  color: rgba(100, 116, 139, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .benchmark-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 54px rgba(15, 23, 42, 0.08);
    border-color: rgba(148, 163, 184, 0.22);
  }
}

@media (max-width: 799px) {
  .benchmark-section {
    margin: 172px auto 0;
    padding: 0 24px;
  }

  .benchmark-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 44px 22px;
    border-radius: 32px;
  }

  .benchmark-intro {
    position: static;
    top: auto;
    padding-top: 0;
  }

  .benchmark-intro h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .benchmark-card {
    padding: 28px 24px 26px;
  }

  .benchmark-stack {
    max-width: none;
    justify-self: stretch;
  }

  .upload-site-footer {
    margin: 96px auto 0;
    padding: 0 24px 40px;
  }

  .upload-footer-meta {
    justify-items: start;
    text-align: left;
  }

  .stories-section {
    margin: 196px auto 0;
    padding: 0 24px 96px;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }
}

.analysis-shell {
  max-width: 1200px;
  margin: 108px auto 144px;
  padding: 0 24px;
}

body.has-analysis .analysis-shell {
  margin-top: 20px;
}

.analysis-status {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-bottom: 14px;
}

.analysis-title {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.analysis-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.analysis-subtitle {
  max-width: 860px;
  margin: 0;
  color: rgba(30, 41, 59, 0.9);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.analysis-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.analysis-step {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(248, 250, 252, 0.22));
  color: rgba(100, 116, 139, 0.56);
  font-size: 0.76rem;
  font-weight: 600;
  transition:
    border-color 520ms ease,
    background 520ms ease,
    color 520ms ease,
    box-shadow 520ms ease,
    transform 520ms ease;
}

.analysis-step + .analysis-step {
  position: relative;
}

.analysis-step + .analysis-step::before {
  content: "\2192";
  position: absolute;
  left: -0.48rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(148, 163, 184, 0.24);
  font-size: 0.58rem;
  font-weight: 600;
  pointer-events: none;
}

.analysis-step.is-active {
  border-color: rgba(45, 212, 191, 0.14);
  background: linear-gradient(90deg, rgba(131, 217, 199, 0.14), rgba(86, 184, 174, 0.1));
  color: #0f172a;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.analysis-step.is-complete {
  border-color: rgba(45, 212, 191, 0.08);
  background: linear-gradient(90deg, rgba(131, 217, 199, 0.08), rgba(86, 184, 174, 0.06));
  color: rgba(15, 118, 110, 0.72);
  box-shadow: none;
}

.analysis-kpis {
  margin-top: 18px;
}

.analysis-kpis-support {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: rgba(95, 107, 122, 0.88);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.analysis-signals {
  margin-top: 10px;
}

.analysis-actions {
  margin-top: 20px;
}

.analysis-overview {
  margin-top: 18px;
}

.analysis-merchants {
  margin-top: 18px;
}

.analysis-shell .card-grid {
  gap: 16px;
}

.analysis-stage {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
  pointer-events: none;
}

.analysis-stage.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.analysis-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.analysis-kpis .analysis-card {
  padding: 18px 18px 16px;
}

.analysis-kpis .analysis-card {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 340ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.analysis-kpis.is-visible .analysis-card {
  opacity: 1;
  transform: translateY(0);
}

.analysis-kpis.is-visible .analysis-card:nth-child(1) {
  transition-delay: 0ms;
}

.analysis-kpis.is-visible .analysis-card:nth-child(2) {
  transition-delay: 80ms;
}

.analysis-kpis.is-visible .analysis-card:nth-child(3) {
  transition-delay: 160ms;
}

.analysis-kpis.is-visible .analysis-card:nth-child(4) {
  transition-delay: 240ms;
}

.analysis-kpis .analysis-label {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
}

.analysis-kpis .analysis-card h3 {
  margin-top: 0.45rem;
  font-size: 1.18rem;
  line-height: 1.06;
}

.analysis-card-emphasis {
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.analysis-signal-primary {
  grid-column: 1 / -1;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(231, 255, 249, 0.9), rgba(255, 255, 255, 0.96)),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(45, 212, 191, 0.18);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.analysis-card-wide {
  grid-column: 1 / -1;
}

.analysis-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysis-card h3 {
  margin-top: 0.65rem;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.analysis-signal-primary h3 {
  max-width: 16ch;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.analysis-actions-grid {
  display: grid;
  gap: 18px;
  margin-top: 1.1rem;
}

.analysis-action-item {
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(248, 250, 252, 0.72);
}

.analysis-action-item h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.analysis-action-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.analysis-card p:last-child {
  margin-top: 0.55rem;
  color: var(--muted);
}

.analysis-table-support {
  margin-top: 0.55rem;
  color: var(--muted);
}

.analysis-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.analysis-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.analysis-table th,
.analysis-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
  white-space: nowrap;
}

.analysis-table th {
  color: rgba(95, 107, 122, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analysis-table td {
  color: rgba(15, 23, 42, 0.92);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.analysis-action-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.9);
  color: rgba(51, 65, 85, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.analysis-table tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0;
}

.analysis-table tbody tr:first-child td {
  padding-top: 16px;
}

.analysis-signal-followup {
  margin-top: 0.8rem;
  color: rgba(100, 116, 139, 0.82);
  font-size: 0.82rem;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .analysis-signals .analysis-card {
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      border-color 180ms ease,
      background-color 180ms ease;
  }

  .analysis-signals .analysis-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
  }
}

.analysis-next-steps {
  max-width: 1200px;
  margin: 52px auto 144px;
  padding: 0 24px;
}

.analysis-next-steps-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.analysis-next-steps-card > h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.analysis-next-steps-support {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.analysis-cta-grid {
  display: grid;
  gap: 0;
  margin-top: 20px;
  justify-items: center;
}

.analysis-cta-block {
  display: flex;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.analysis-cta-block-primary {
  border-color: transparent;
  box-shadow: none;
}

.analysis-cta-block .button {
  margin-top: 0;
  align-self: center;
}

.marketing-stack {
  position: relative;
  padding-top: 28px;
  max-height: 5000px;
  opacity: 1;
  transform: translateY(0);
  overflow: visible;
  transition:
    opacity 420ms ease,
    max-height 520ms ease,
    transform 420ms ease;
}

.marketing-stack.is-collapsed {
  max-height: 0;
  opacity: 0;
  transform: translateY(-18px);
  overflow: hidden;
  pointer-events: none;
}

body.has-analysis .upload-site-footer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-18px);
  overflow: hidden;
  pointer-events: none;
}

body.has-analysis .upload-site-footer {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 720px) {
  .analysis-kpis.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .analysis-cta-grid > .analysis-cta-block:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 720px);
  }

  .analysis-next.card-grid,
  .analysis-overview.card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analysis-signals.card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 799px) {
  .upload-header {
    padding: 1rem 1rem 0;
  }

  .upload-nav {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    gap: 0.9rem;
  }

  .upload-nav-reveal {
    position: absolute;
    padding: 0 1rem;
    transform: none;
    transition:
      opacity 140ms ease,
      max-height 140ms ease;
  }

  .upload-nav-reveal-panel {
    padding: 20px 0 14px;
  }

  .upload-nav-reveal-panel[data-panel="analyze"],
  .upload-nav-reveal-panel[data-panel="worth"],
  .upload-nav-reveal-panel[data-panel="benchmark"] {
    max-width: none;
  }

  .upload-nav-panel-title {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .upload-nav-panel-links {
    gap: 22px;
  }

  .upload-nav-reveal-panel[data-panel="analyze"] .upload-nav-panel-links {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 22px;
  }

  .upload-nav-panel-link {
    font-size: 1.45rem;
  }

  .upload-dropzone {
    padding: 32px 24px 24px;
  }

  .analysis-shell {
    margin: 80px auto 104px;
  }

  .analysis-next-steps {
    margin: 0 auto 104px;
  }

  .analysis-next-steps-card {
    padding: 24px;
  }

  .analysis-status {
    margin-bottom: 20px;
  }

  .marketing-stack.is-collapsed {
    transform: translateY(-12px);
  }
}
/* Payments homepage alignment tweaks */
.upload-hero {
  align-items: center;
  text-align: center;
}

.upload-hero h1,
.upload-support-line {
  margin-left: auto;
  margin-right: auto;
}

.upload-dropzone {
  margin-left: auto;
  margin-right: auto;
}

.marketing-stack {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.industries-section,
.signals-section,
.benchmark-section,
.stories-section {
  margin-left: auto;
  margin-right: auto;
}

.industries-intro,
.signals-intro,
.benchmark-intro {
  text-align: center;
}

.industries-sources {
  justify-content: center;
}

.stories-title {
  text-align: center;
}

@media (max-width: 900px) {
  .marketing-stack {
    max-width: 100%;
  }
}

/* Fix optical centering for one-line homepage headlines */
.upload-hero h1 {
  width: auto;
  max-width: none;
}

.industries-title {
  max-width: none;
}
