:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #1a1a1b;
  --text-soft: #475569;
  --text-faint: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --accent: #007aff;
  --accent-2: #06b6d4;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.1);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
}

/* ===== LOGO LOCKUP (ADD ONLY) ===== */

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 58px; /* slightly larger */
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-text__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.logo-text__tag {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Mobile tweak */
@media (max-width: 768px) {
  .logo-img {
    height: 48px;
  }

  .logo-text__title {
    font-size: 12px;
  }

  .logo-text__tag {
    font-size: 10px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Hero */

.hero-shell {
  position: relative;
  overflow: hidden;
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.hero-shell::before {
  width: 420px;
  height: 420px;
  background: rgba(0, 122, 255, 0.12);
  top: -120px;
  left: -80px;
}

.hero-shell::after {
  width: 380px;
  height: 380px;
  background: rgba(6, 182, 212, 0.12);
  right: -80px;
  top: 40px;
}

.hero {
  padding: 96px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-copy .subtitle {
  max-width: 680px;
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.speed-claim {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-soft);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-button,
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 122, 255, 0.22);
}

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

.cta-button-secondary {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.cta-button-secondary:hover {
  border-color: rgba(0, 122, 255, 0.35);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-media {
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 122, 255, 0.16), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(6, 182, 212, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  text-align: center;
  padding: 32px;
}

.hero-card-body {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--border);
}

.hero-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.hero-card-body p {
  font-size: 15px;
  color: var(--text-soft);
}

/* Trust */

.trust-bar {
  padding: 0 0 80px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
}

.trust-item .number {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}

.trust-item .label {
  color: var(--text-soft);
  font-size: 14px;
}

/* Generic sections */

section {
  scroll-margin-top: 100px;
}

.section-pad {
  padding: 88px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.section-header {
  text-align: center;
  margin-bottom: 42px;
}

.section-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--text-soft);
}

/* Industries */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.industry-card h3 {
  font-size: 19px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.industry-card ul {
  list-style: none;
}

.industry-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 10px;
}

.industry-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

/* How it works */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.step .timing {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-soft);
  font-size: 14px;
}

/* Upsell */

.upsell {
  padding: 88px 0 100px;
}

.upsell-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 122, 255, 0.12), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.12), transparent 30%),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  text-align: center;
}

.upsell-card h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  margin-bottom: 14px;
}

.upsell-card p {
  max-width: 780px;
  margin: 0 auto 24px;
  color: var(--text-soft);
  font-size: 17px;
}

/* Footer */

footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 46px 0 28px;
}

.footer-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.footer-section h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-section a:hover {
  color: var(--accent);
}

.powered-by {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.6;
}

.powered-by a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-inner,
  .trust-items,
  .industry-grid,
  .process-steps,
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 0;
  }

  .logo-img {
    height: 42px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 72px 0 48px;
  }

  .hero-inner,
  .trust-items,
  .industry-grid,
  .process-steps,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-copy .subtitle,
  .section-header p,
  .upsell-card p {
    font-size: 16px;
  }

  .upsell-card {
    padding: 28px 22px;
  }

  .trust-bar {
    padding-bottom: 56px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .upsell {
    padding: 64px 0 72px;
  }
  
}
.logo-wordmark {
  height: 10px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-text__tag {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
/* ===== HERO BRAND ABOVE HEADLINE ===== */

.hero-brand {
  margin-bottom: 18px;
}

.hero-brand img {
  height: 112px;
  width: auto;
}

/* reduce headline size slightly */
.hero-title {
  font-size: clamp(34px, 5vw, 60px); /* was larger */
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-copy h1.hero-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}
.hero-card-media {
  position: relative;
  overflow: hidden;
}

.hero-card-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ===== MOBILE NAV MENU ===== */

/* hidden on desktop */
.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle:hover {
  border-color: rgba(0, 122, 255, 0.22);
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 22px;
}

.nav-toggle span:nth-child(3) {
  top: 29px;
}

/* open state */
.nav-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* mobile dropdown wrapper */
.mobile-nav {
  display: none;
}

/* mobile-only behavior */
@media (max-width: 768px) {
  .site-nav {
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 120;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: block;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
    padding: 14px 14px;
    border-radius: 14px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-nav a:hover {
    background: rgba(0, 122, 255, 0.06);
    color: var(--accent);
  }

  .mobile-nav a + a {
    margin-top: 4px;
  }

  /* small adjustment so header feels balanced on mobile */
  .logo-lockup,
  .logo-wrap {
    min-width: 0;
  }
}
/* ===== FULL-SCREEN HERO SCAN BACKGROUND ===== */

.hero-shell {
  min-height: 190svh;
  background: #05080d;
  overflow: clip;
  isolation: isolate;
}

.scan-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: #05080d;
  transition: opacity 0.35s ease;
}

.scan-background__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.scan-background__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 28%, rgba(255, 255, 255, 0.36) 58%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.16) 42%, rgba(5, 8, 13, 0.2) 100%);
  transition: opacity 0.35s ease, background 0.35s ease;
}

body.scan-bg-visible .scan-background {
  opacity: 1;
}

body.scan-bg-interactive .scan-background {
  pointer-events: auto;
}

body.scan-bg-interactive .scan-background__veil {
  opacity: 0.12;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.12), rgba(5, 8, 13, 0.08));
}

.hero-shell > .hero,
.hero-shell > .trust-bar,
.hero-shell > .scan-stage {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.hero-card--floating {
  max-width: 420px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.trust-bar {
  padding-top: 12px;
}

.scan-stage {
  min-height: 72svh;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.scan-stage-inner {
  width: min(var(--container), calc(100% - 40px));
  display: flex;
  justify-content: flex-end;
}

.scan-stage-card {
  width: min(420px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
}

.scan-stage-eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scan-stage-card h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.scan-stage-card p {
  color: var(--text-soft);
  font-size: 15px;
}

.scan-touch-toggle {
  display: none;
  margin-top: 16px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.section-alt,
.how-it-works,
.upsell,
footer {
  position: relative;
  z-index: 5;
}

@media (max-width: 1100px) {
  .hero-card--floating {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-shell {
    min-height: 210svh;
  }

  .scan-background__veil {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 34%, rgba(255, 255, 255, 0.2) 72%, rgba(5, 8, 13, 0.22) 100%);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-card--floating {
    margin-top: 0;
  }

  .scan-stage {
    min-height: 78svh;
    align-items: flex-end;
    padding-bottom: 30px;
  }

  .scan-stage-inner {
    justify-content: center;
  }

  .scan-stage-card {
    padding: 20px;
  }

  .scan-touch-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.scan-bg-interactive .scan-background {
    pointer-events: none;
  }

  body.scan-bg-touch-enabled .scan-background {
    pointer-events: auto;
  }

  body.scan-bg-touch-enabled {
    overflow: hidden;
  }

  body.scan-bg-touch-enabled .scan-touch-toggle {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 200;
    box-shadow: var(--shadow-md);
  }
}


/* ===== PRODUCTION HARDENING / RESPONSIVE REFINEMENTS ===== */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

iframe,
video,
canvas,
svg {
  max-width: 100%;
}

.container,
.footer-inner {
  width: min(var(--container), calc(100% - clamp(32px, 5vw, 56px)));
}

.logo-wordmark {
  max-width: min(170px, 42vw);
}

.site-nav {
  min-width: 0;
}

.nav-links {
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: flex-end;
}

/* Ultra-wide safe full-viewport iframe background */
.scan-background {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-width: 100vw;
  min-height: 100svh;
  overflow: hidden;
  contain: layout paint size;
}

.scan-background__iframe {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-width: 100vw;
  min-height: 100svh;
  transform: translate3d(-50%, -50%, 0) scale(1.02);
  transform-origin: center center;
  background: #05080d;
}

@media (min-aspect-ratio: 16/9) {
  .scan-background__iframe {
    width: 112vw;
    height: 112vh;
    height: 112dvh;
    transform: translate3d(-50%, -50%, 0) scale(1.04);
  }
}

@media (min-aspect-ratio: 21/9) {
  .scan-background__iframe {
    width: 130vw;
    height: 130vh;
    height: 130dvh;
    transform: translate3d(-50%, -50%, 0) scale(1.08);
  }
}

.hero-shell > .hero,
.hero-shell > .trust-bar,
.hero-shell > .scan-stage {
  transform: translateZ(0);
}

.hero-copy,
.scan-stage-card,
.trust-item,
.industry-card,
.step,
.upsell-card,
.compare-card,
.compare-mini,
.compare-step,
.service-block {
  max-width: 100%;
}

.hero-copy {
  width: min(720px, 100%);
}

.hero-actions,
.compare-hero__cta {
  flex-wrap: wrap;
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  min-width: 720px;
}

.prose-page {
  max-width: 860px;
}

.prose-page h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.prose-page h2 {
  margin: 34px 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
}

.prose-page p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.prose-page a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-inner,
  .trust-items,
  .industry-grid,
  .process-steps,
  .footer-content,
  .compare-split,
  .compare-grid-3,
  .compare-process,
  .service-block__grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
  }

  .hero-visual {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }
}

@media (max-width: 768px) {
  .container,
  .footer-inner {
    width: min(var(--container), calc(100% - 28px));
  }

  header {
    z-index: 300;
  }

  .site-nav {
    gap: 14px;
  }

  .logo-img {
    height: 40px;
  }

  .logo-wordmark {
    max-width: 118px;
  }

  .logo-text__tag {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100svh - 90px);
    overflow-y: auto;
  }

  .hero {
    padding: 54px 0 36px;
  }

  .hero-copy h1.hero-title,
  .hero-title,
  .hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -0.045em;
  }

  .hero-brand img {
    height: clamp(72px, 22vw, 104px);
  }

  .hero-copy {
    padding: 20px;
  }

  .speed-claim {
    gap: 8px;
    font-size: 13px;
  }

  .hero-actions,
  .compare-hero__cta {
    align-items: stretch;
    width: 100%;
  }

  .hero-actions a,
  .compare-hero__cta a,
  .cta-button,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-item,
  .industry-card,
  .step,
  .upsell-card,
  .scan-stage-card,
  .compare-card,
  .compare-mini,
  .compare-step,
  .service-block {
    border-radius: 20px;
  }

  .section-header {
    text-align: left;
  }

  .section-header p {
    margin-left: 0;
  }

  .footer-content {
    gap: 18px;
  }

  .footer-section {
    padding-bottom: 6px;
  }

  .compare-table {
    min-width: 640px;
  }

  .contact-form-minimal iframe {
    height: 1180px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .container,
  .footer-inner {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero-copy,
  .scan-stage-card,
  .upsell-card {
    padding: 18px;
  }

  .trust-item,
  .industry-card,
  .step {
    padding: 20px;
  }

  .scan-stage-card p,
  .hero-copy .subtitle,
  .section-header p,
  .upsell-card p,
  .prose-page p {
    font-size: 15.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scan-background__iframe {
    transform: translate3d(-50%, -50%, 0) !important;
  }
}


/* ===== INDEX SCAN HERO FINAL OVERRIDES =====
   Moved here from index.html so the page markup stays clean.
   The iframe is visible by default but cannot take mouse/touch input until the user chooses Explore the Scan.
*/

.hero-shell {
  position: relative;
  min-height: 190svh;
  overflow: clip;
  isolation: isolate;
  background: #05080d;
}

body:not(.scan-control-active) #scanBackground,
body:not(.scan-control-active) #scanBackground .scan-background__iframe {
  pointer-events: none !important;
}

body.scan-control-active #scanBackground,
body.scan-control-active #scanBackground .scan-background__iframe {
  pointer-events: auto !important;
}

body.scan-control-active .scan-background__veil {
  opacity: 0.1;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.12), rgba(5, 8, 13, 0.08));
}

.hero-shell > .hero,
.hero-shell > .scan-stage {
  position: relative;
  z-index: 3;
}

.hero-shell > .trust-bar {
  display: none;
}

.hero {
  min-height: clamp(265px, 36svh, 465px);
  display: flex;
  align-items: flex-start;
  padding: clamp(5.25rem, 10vw, 7rem) 0 0.75rem;
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-copy.hero-copy--minimal {
  width: min(700px, calc(100vw - 2rem));
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(0.85rem, 2.2vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(1.15rem, 2vw, 1.65rem);
  background: rgba(255, 255, 255, 0.065);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  text-align: center;
  pointer-events: auto;
}

.hero-brand.hero-brand--minimal {
  margin: 0 auto;
}

.hero-brand.hero-brand--minimal img {
  width: min(340px, 72vw);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-mini-subtitle {
  margin: clamp(0.55rem, 1.35vw, 0.8rem) auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.hero-copy--minimal .hero-actions {
  margin-top: clamp(0.85rem, 2vw, 1.25rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.scan-stage {
  position: relative;
  z-index: 5;
  min-height: clamp(420px, 64svh, 780px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(0.45rem, 1.4svh, 1rem);
  padding-bottom: clamp(1rem, 4svh, 2.4rem);
  pointer-events: none;
}

.scan-stage-inner {
  position: relative;
  width: min(var(--container), calc(100% - clamp(32px, 5vw, 56px)));
  min-height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.scan-interaction-panel {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}

.scan-control-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  font: inherit;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #061321;
  background: rgba(105, 224, 255, 0.95);
  box-shadow: 0 0 22px rgba(105, 224, 255, 0.34);
  pointer-events: auto;
}

.scan-control-button[aria-pressed="true"] {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(5, 13, 24, 0.78);
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.post-scan-intro {
  position: relative;
  z-index: 5;
  background:
    radial-gradient(circle at top left, rgba(105, 224, 255, 0.16), transparent 36rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  color: #102030;
}

.post-scan-intro .intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.intro-copy-card,
.intro-proof-card {
  border: 1px solid rgba(25, 65, 95, 0.12);
  border-radius: clamp(1.1rem, 2vw, 1.6rem);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 80px rgba(24, 56, 86, 0.12);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.intro-copy-card .hero-title {
  margin-top: 0;
  color: #0e2336;
  text-shadow: none;
}

.intro-copy-card .subtitle {
  max-width: 58ch;
  color: #3b5d72;
}

.intro-copy-card .speed-claim {
  margin-top: 1rem;
  color: #18384c;
}

.intro-proof-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #264357;
}

.intro-proof-card .hero-card-label {
  margin-bottom: 0.85rem;
  color: #1489a7;
}

.post-scan-intro .trust-bar {
  background: transparent;
  padding: 0;
}

.post-scan-intro .trust-bar .container {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.post-scan-intro .trust-item {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(25, 65, 95, 0.11);
  box-shadow: 0 18px 54px rgba(24, 56, 86, 0.09);
}

.post-scan-intro .trust-item .number {
  color: #102030;
}

.post-scan-intro .trust-item .label {
  color: #4c6a7d;
}

@media (max-width: 880px) {
  .post-scan-intro .intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: clamp(240px, 34svh, 360px);
    padding-top: clamp(4.65rem, 18vw, 5.6rem);
  }

  .hero-copy.hero-copy--minimal {
    width: min(94vw, 520px);
    padding: 0.72rem;
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.075);
  }

  .hero-brand.hero-brand--minimal img {
    width: min(265px, 68vw);
    max-height: 70px;
  }

  .hero-mini-subtitle {
    font-size: 0.98rem;
  }

  .hero-copy--minimal .hero-actions {
    gap: 0.55rem;
    margin-top: 0.7rem;
  }

  .hero-copy--minimal .cta-button,
  .hero-copy--minimal .cta-button-secondary {
    padding: 0.72rem 0.9rem;
    font-size: 0.86rem;
  }

  .scan-stage {
    min-height: 58svh;
    align-items: flex-end;
    padding-top: 0.35rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .scan-stage-inner {
    width: min(var(--container), calc(100% - 28px));
  }

  .scan-control-button {
    min-width: min(78vw, 260px);
    padding: 0.82rem 1rem;
    font-size: 0.9rem;
  }

  .intro-copy-card,
  .intro-proof-card {
    padding: 1rem;
    border-radius: 1rem;
  }

  .intro-copy-card .speed-claim {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scan-control-button {
    transition: none;
  }
}
