:root {
  --navy: #07111f;
  --navy-2: #020617;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --violet: #7c3aed;
  --amber: #f59e0b;
  --bg: #f8fafc;
  --card: #ffffff;
  --line: #e2e8f0;
  --heading: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 28px;
  color: var(--heading);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.28);
}

.brand-logo {
  width: auto;
  height: 52px;
  max-height: 52px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.86);
  font-size: 14px;
  color: #334155;
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover {
  color: var(--blue);
  background: #fff;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f97316 0%, #ef4444 48%, #7c3aed 100%);
  box-shadow: 0 16px 34px rgba(239, 68, 68, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-primary:before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(239, 68, 68, 0.36), 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.btn-secondary {
  color: #0f3f47;
  background: #ffffff;
  border-color: #8fd7df;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.11);
}

.btn-secondary:hover {
  color: #0f172a;
  border-color: #22d3ee;
  background: #ecfeff;
  box-shadow: 0 16px 32px rgba(8, 145, 178, 0.18);
}

.btn-dark {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.32);
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.24);
}

.btn-dark:hover {
  background: linear-gradient(135deg, #111827, #334155);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.32);
}

.btn-link {
  color: var(--heading);
  padding-inline: 8px;
  border-color: transparent;
  background: transparent;
}

.btn-link:hover {
  color: var(--blue);
  background: #eff6ff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--heading);
  font-weight: 900;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eef2f7;
  color: #334155;
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav-actions {
  display: grid;
  gap: 8px;
  padding-top: 10px;
}

.mobile-nav-actions a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.mobile-nav-actions .mobile-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.master-hero {
  position: relative;
  padding: 76px 0 58px;
  overflow: hidden;
  color: #e2e8f0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(8, 60, 46, 0.82) 48%, rgba(15, 23, 42, 0.58) 100%),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1800&q=86") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.master-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.42));
}

.master-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 44px;
  align-items: center;
}

.master-hero-copy h1 {
  max-width: 800px;
  margin: 14px 0 18px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}

.master-hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: 19px;
  line-height: 1.7;
}

.master-hero .eyebrow {
  color: #bbf7d0;
  background: rgba(5, 96, 58, 0.62);
  border-color: rgba(187, 247, 208, 0.34);
}

.master-hero .trust-pill {
  color: #ecfdf5;
  border-color: rgba(187, 247, 208, 0.28);
  background: rgba(15, 23, 42, 0.42);
}

.dashboard-mockup {
  position: relative;
  border: 1px solid #dbe7e4;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.hero-dashboard {
  min-height: 430px;
}

.dashboard-browserbar {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
}

.dashboard-browserbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
}

.dashboard-browserbar span:nth-child(2) {
  background: #f59e0b;
}

.dashboard-browserbar span:nth-child(3) {
  background: #10b981;
}

.dashboard-browserbar em {
  padding: 5px 10px;
  border-radius: 999px;
  color: #0f766e;
  background: #ecfdf5;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.dashboard-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.polished-dashboard-head {
  border-color: #bbf7d0;
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.92), rgba(255, 255, 255, 0.96)),
    #fff;
}

.dashboard-head span,
.dashboard-panel span,
.mini-screen span,
.feature-bento span,
.report-preview span {
  display: block;
  color: #0f766e;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-head strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: 20px;
}

.dashboard-head small {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 12px;
}

.dashboard-head em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: #065f46;
  background: #d1fae5;
  font-style: normal;
  font-weight: 850;
}

.dashboard-status-stack {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.dashboard-status-stack b {
  color: #0f172a;
  font-size: 13px;
}

.dashboard-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.dashboard-metric-grid div,
.dashboard-panel,
.candidate-list,
.report-preview,
.proof-card,
.trust-metric-grid article,
.pricing-guide-grid article,
.feature-bento,
.mini-screen {
  border: 1px solid #dbe7e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.dashboard-metric-grid div {
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.dashboard-metric-grid div:after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: rgba(8, 169, 66, 0.08);
}

.dashboard-metric-grid span,
.dashboard-metric-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.dashboard-metric-grid strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--heading);
  font-size: 22px;
}

.dashboard-main-row,
.review-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}

.polished-dashboard-row {
  grid-template-columns: 1.05fr 0.95fr;
}

.dashboard-panel,
.candidate-list,
.report-preview {
  padding: 16px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-title strong {
  color: #0f172a;
  font-size: 13px;
}

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

.candidate-monitor-list p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  margin: 0;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.candidate-monitor-list strong {
  color: #0f172a;
  font-size: 13px;
}

.candidate-monitor-list small {
  grid-column: 1 / -1;
  color: #64748b;
  font-size: 12px;
}

.candidate-monitor-list em {
  min-width: 62px;
  padding: 3px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.risk-high {
  color: #991b1b;
  background: #fee2e2;
}

.risk-med {
  color: #92400e;
  background: #fef3c7;
}

.risk-clear {
  color: #065f46;
  background: #d1fae5;
}

.progress-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.labeled-progress {
  margin-top: 0;
}

.labeled-progress p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #475569;
  font-size: 12px;
}

.labeled-progress b {
  color: #0f172a;
}

.progress-list i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #08a942, #06b6d4);
}

.mini-chart-row {
  display: flex;
  align-items: end;
  gap: 7px;
  min-height: 58px;
  margin-top: 14px;
  padding: 10px;
  border-radius: 8px;
  background: #f8fafc;
}

.mini-chart-row i {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #22c55e, #06b6d4);
}

.dashboard-bottom-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #dbe7e4;
  border-radius: 8px;
  background: #ffffff;
}

.dashboard-bottom-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #334155;
  font-size: 12px;
  font-weight: 750;
}

.dashboard-bottom-strip b {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #08a942;
}

.alert-panel p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  color: #475569;
  font-size: 13px;
}

.alert-panel b {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
}

.floating-metric {
  position: absolute;
  z-index: 2;
  max-width: 170px;
  padding: 10px 12px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #065f46;
  background: #f0fdf4;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  font-size: 12px;
  font-weight: 850;
}

.fm-one {
  right: -16px;
  bottom: 84px;
}

.fm-two {
  left: -20px;
  top: 118px;
}

.outcome-hero {
  min-height: 640px;
}

.trust-metric-grid,
.proof-card-grid,
.proof-mockup-grid,
.feature-bento-grid,
.pricing-guide-grid,
.workflow-mini-grid,
.detection-grid {
  display: grid;
  gap: 16px;
}

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

.trust-metric-grid article,
.pricing-guide-grid article {
  padding: 18px;
}

.trust-metric-grid strong {
  display: block;
  color: #05603a;
  font-size: 32px;
  line-height: 1;
}

.trust-metric-grid span,
.pricing-guide-grid span {
  display: block;
  margin-top: 8px;
  color: #475569;
}

.proof-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.proof-card {
  padding: 20px;
}

.proof-card span {
  color: #0f766e;
  font-weight: 850;
}

.proof-card p {
  margin: 10px 0 0;
  color: #334155;
}

.proof-mockup-grid,
.feature-bento-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-screen,
.feature-bento {
  min-height: 220px;
  padding: 18px;
}

.mini-screen.wide,
.feature-bento.large {
  grid-column: span 2;
}

.mini-screen strong,
.feature-bento h3 {
  display: block;
  margin: 8px 0 14px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.25;
}

.screen-bars,
.screen-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 92px;
  padding: 12px;
  border-radius: 8px;
  background: #f1f5f9;
}

.screen-bars i,
.screen-chart i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #08a942, #06b6d4);
}

.screen-bars i:nth-child(1) { height: 74%; }
.screen-bars i:nth-child(2) { height: 48%; }
.screen-bars i:nth-child(3) { height: 88%; }
.screen-chart i:nth-child(1) { height: 36%; }
.screen-chart i:nth-child(2) { height: 62%; }
.screen-chart i:nth-child(3) { height: 82%; }
.screen-chart i:nth-child(4) { height: 54%; }

.mini-screen ul,
.feature-bento ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-screen li,
.feature-bento li {
  min-height: 16px;
  border-radius: 999px;
  background: #e2e8f0;
}

.risk-ring {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 10px solid #f97316;
  border-radius: 999px;
  color: var(--heading);
  font-weight: 900;
}

.bento-ui {
  padding: 12px;
  border-radius: 8px;
  background: #f8fafc;
}

.calendar-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.calendar-dots i {
  min-height: 34px;
  border-radius: 8px;
  background: #dbeafe;
}

.money-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #f0fdf4;
}

.money-row strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #08a942;
}

.workflow-mini-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.workflow-mini-grid article,
.detection-grid article {
  padding: 16px;
  border: 1px solid #dbe7e4;
  border-radius: 8px;
  background: #fff;
}

.workflow-mini-grid strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #08a942;
}

.workflow-mini-grid span {
  display: block;
  margin-top: 10px;
  color: #334155;
  font-weight: 750;
}

.detection-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.detection-grid article {
  color: #0f172a;
  font-weight: 800;
}

.candidate-list p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 12px 0 0;
  padding: 10px;
  border-radius: 8px;
  background: #f8fafc;
}

.candidate-list em {
  color: #b45309;
  font-style: normal;
  font-weight: 800;
}

.report-preview dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.report-preview dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.report-preview dt {
  color: var(--muted);
}

.report-preview dd {
  margin: 0;
  color: var(--heading);
  font-weight: 850;
}

.best-for {
  min-height: 48px;
  margin: -4px 0 14px;
  color: #475569;
  font-size: 13px;
}

.upgrade-box {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #dbe7e4;
  border-radius: 8px;
  background: #fff;
}

.upgrade-box h3 {
  margin: 0 0 14px;
  color: var(--heading);
}

.thank-you-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 620px;
  padding: 0;
  color: #dbeafe;
  background:
    radial-gradient(circle at 14% 16%, rgba(6, 182, 212, 0.22), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(124, 58, 237, 0.22), transparent 24%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 34px;
}

.hero-slide-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(7, 17, 31, 0.83) 43%, rgba(7, 17, 31, 0.32) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.08) 58%);
}

.hero-copy-panel {
  max-width: 760px;
}

.hero-message {
  display: none;
}

.hero-message.is-active {
  display: block;
  animation: heroTextIn 520ms ease both;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(15, 23, 42, 0.42);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  margin: 14px 0 14px;
  max-width: 760px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  color: #fff;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 710px;
  margin: 0 0 22px;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.trust-pill {
  padding: 8px 11px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 750;
}

.hero-slider-controls {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.hero-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.34);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.hero-dot.is-active {
  width: 58px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.hero-outcome-panel {
  position: relative;
  min-height: 430px;
}

.hero-visual-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  transition: opacity 520ms ease, transform 700ms ease;
  pointer-events: none;
}

.hero-visual-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.hero-visual-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.03) 28%, rgba(2, 6, 23, 0.86));
}

.hero-visual-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(14px);
}

.hero-visual-content > span {
  display: block;
  margin-bottom: 6px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual-content > strong {
  display: block;
  max-width: 360px;
  font-size: 24px;
  line-height: 1.16;
}

.hero-visual-content div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.18);
}

.hero-visual-content b {
  color: #fbbf24;
  font-size: 30px;
  line-height: 1;
}

.hero-visual-content em {
  color: #cbd5e1;
  font-style: normal;
  font-weight: 750;
}

.mockup-frame {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.mockup-topbar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.74);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.dot:nth-child(2) {
  background: var(--amber);
}

.dot:nth-child(3) {
  background: var(--emerald);
}

.dashboard {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 14px;
}

.dash-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.dash-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #f8fafc;
  font-weight: 850;
  font-size: 14px;
}

.status {
  color: #86efac;
  font-size: 12px;
}

.webcam-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.webcam {
  min-height: 74px;
  border-radius: 8px;
  padding: 9px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(6, 182, 212, 0.14)),
    #0f172a;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #67e8f9);
  margin-bottom: 13px;
}

.mini-line {
  height: 7px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.5);
  margin-top: 6px;
}

.mini-line.short {
  width: 58%;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.metric {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.metric span {
  color: #cbd5e1;
  font-size: 12px;
}

.alert-list {
  display: grid;
  gap: 9px;
}

.alert {
  padding: 9px;
  border-left: 3px solid var(--amber);
  border-radius: 6px;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.1);
  font-size: 12px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: #fff;
}

.section.dark {
  color: #cbd5e1;
  background: var(--navy-2);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 8px 0 12px;
  color: var(--heading);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.dark h2 {
  color: #fff;
}

.section-heading p {
  margin: 0;
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--card);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin: 12px 0 8px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.2;
}

.card p {
  margin: 0 0 14px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.card:nth-child(3n + 2) .icon {
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.card:nth-child(3n + 3) .icon {
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.text-link {
  color: var(--blue);
  font-weight: 850;
}

.image-card-grid {
  align-items: stretch;
}

.image-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.image-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.13);
}

.image-card a {
  display: grid;
  min-height: 100%;
  grid-template-rows: 190px 1fr;
}

.image-card-media {
  position: relative;
  overflow: hidden;
}

.image-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.image-card:hover .image-card-media img {
  transform: scale(1.045);
}

.image-card-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(2, 6, 23, 0.72));
}

.image-card-media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
}

.image-card-body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px;
}

.image-card-body h3 {
  margin: 0;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.18;
}

.image-card-body p {
  margin: 0;
  color: var(--body);
}

.image-card-body strong {
  color: var(--blue);
  font-size: 14px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.story-photo,
.analytics-photo-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #0f172a;
}

.story-photo img,
.analytics-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.story-photo:after,
.analytics-photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.82));
}

.story-photo-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  max-width: 420px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(16px);
}

.story-photo-badge span {
  display: block;
  color: #bae6fd;
  font-size: 13px;
  font-weight: 850;
}

.story-photo-badge strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.25;
}

.story-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.story-check-grid div {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--heading);
  background: #fff;
  font-weight: 800;
}

.story-check-grid span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: inset 0 0 0 5px #fff;
}

.analytics-proof {
  align-items: center;
}

.analytics-photo-card {
  min-height: 400px;
}

.analytics-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.step:before {
  counter-increment: step;
  content: counter(step);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.workflow-section {
  position: relative;
}

.workflow-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.workflow-rail {
  position: relative;
  display: grid;
  gap: 14px;
}

.workflow-rail:before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 25px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--emerald));
  opacity: 0.34;
}

.workflow-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.workflow-number {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.workflow-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-card h3 {
  margin: 5px 0 7px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.2;
}

.workflow-card p {
  margin: 0;
}

.workflow-card > strong {
  grid-column: 2;
  width: fit-content;
  margin-top: 3px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
  font-size: 13px;
}

.workflow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.workflow-tags em {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  background: #f8fafc;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.workflow-board {
  position: sticky;
  top: 98px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 8px;
  color: #dbeafe;
  background:
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.24), transparent 34%),
    linear-gradient(145deg, #07111f, #020617);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.22);
}

.workflow-board-top {
  padding: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.workflow-board-top span {
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-board-top strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 22px;
}

.workflow-board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(148, 163, 184, 0.16);
}

.workflow-board-grid div {
  padding: 17px;
  background: rgba(15, 23, 42, 0.82);
}

.workflow-board-grid span,
.workflow-progress span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.workflow-board-grid strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 24px;
}

.workflow-board-grid small {
  color: #cbd5e1;
}

.workflow-progress {
  padding: 18px;
}

.workflow-progress div {
  height: 9px;
  overflow: hidden;
  margin-top: 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}

.workflow-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
}

.workflow-activity {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 18px 20px;
  list-style: none;
}

.workflow-activity li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #cbd5e1;
  font-size: 14px;
}

.workflow-activity b {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.visual-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-image-panel {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e2e8f0;
}

.visual-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.visual-image-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.78));
}

.visual-image-panel figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(12px);
}

.visual-image-panel figcaption span {
  display: block;
  margin-bottom: 5px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-image-panel figcaption strong {
  display: block;
  font-size: 22px;
  line-height: 1.18;
}

.feature-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: center;
}

.feature-detail-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.08), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.feature-detail-copy .section-heading {
  margin-bottom: 18px;
}

.feature-outcome {
  margin: 18px 0 20px;
  padding: 16px 18px;
  border: 1px solid rgba(14, 165, 233, 0.24);
  border-radius: 8px;
  background: #f0f9ff;
}

.feature-outcome span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-outcome strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.feature-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e2e8f0;
  box-shadow: var(--shadow-lg);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.feature-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(2, 6, 23, 0.72));
}

.feature-photo figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(14px);
}

.feature-photo figcaption span {
  display: block;
  margin-bottom: 6px;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-photo figcaption strong {
  display: block;
  font-size: 25px;
  line-height: 1.16;
}

.feature-process-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-process-card span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: var(--ink);
}

.feature-process-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.feature-process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.chart {
  height: 180px;
  display: flex;
  gap: 12px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.bar {
  flex: 1;
  min-height: 38px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.bar:nth-child(2) {
  height: 70%;
  background: linear-gradient(180deg, var(--emerald), var(--cyan));
}

.bar:nth-child(3) {
  height: 44%;
  background: linear-gradient(180deg, var(--amber), var(--blue));
}

.bar:nth-child(4) {
  height: 86%;
}

.bar:nth-child(5) {
  height: 58%;
  background: linear-gradient(180deg, var(--violet), var(--blue));
}

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

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list li:before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: inset 0 0 0 5px #fff;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price {
  margin: 16px 0;
  color: var(--heading);
  font-size: 34px;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.pricing-card.highlight {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.16);
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: #fff;
  color: var(--heading);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  padding: 46px;
  border-radius: 8px;
  color: #dbeafe;
  background:
    radial-gradient(circle at 18% 20%, rgba(6, 182, 212, 0.26), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.cta-band h2 {
  color: #fff;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

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

label {
  color: var(--heading);
  font-size: 13px;
  font-weight: 850;
}

input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--heading);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-info-card {
  margin: 22px 0;
  padding: 22px;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.contact-info-card h3 {
  margin: 0 0 14px;
  color: var(--heading);
}

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

.contact-info-list a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #334155;
  background: #f8fafc;
}

.contact-info-list strong {
  display: block;
  color: var(--heading);
  line-height: 1.3;
}

.contact-social a {
  color: #0f172a;
  border-color: #bae6fd;
  background: #ecfeff;
}

.breadcrumb {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: #bfdbfe;
}

.page-hero {
  padding: 66px 0;
  color: #dbeafe;
  background:
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.18), transparent 24%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
}

.page-hero h1 {
  max-width: 850px;
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: 18px;
}

.site-footer {
  padding: 42px 0 28px;
  color: #cbd5e1;
  background:
    radial-gradient(circle at 15% 0%, rgba(6, 182, 212, 0.15), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(37, 99, 235, 0.18), transparent 28%),
    #020617;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 32px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.footer-kicker {
  display: block;
  color: #67e8f9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 720px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-brand-panel {
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.58);
}

.footer-brand {
  color: #fff;
}

.footer-brand-panel p {
  margin: 18px 0;
  color: #94a3b8;
}

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

.footer-contact-list a,
.footer-action-card {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
}

.footer-contact-list a {
  min-height: 40px;
}

.footer-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 8px;
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.1);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 8px;
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.7);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 232, 249, 0.72);
  color: #ffffff;
  background: rgba(8, 145, 178, 0.42);
}

.footer-social .footer-icon {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  color: currentColor;
  background: transparent;
}

.footer-social .footer-icon svg {
  width: 20px;
  height: 20px;
}

.footer-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 220px));
  gap: 14px;
  align-items: start;
  justify-content: end;
}

.footer-action-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-action-card {
  display: grid;
  align-content: start;
  height: max-content;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.58);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-action-card:hover {
  transform: translateY(-2px);
  border-color: rgba(103, 232, 249, 0.36);
  background: rgba(15, 23, 42, 0.82);
}

.footer-action-card span:not(.footer-icon) {
  color: #fff;
  font-weight: 900;
}

.footer-action-card p {
  margin: 8px 0 14px;
  color: #94a3b8;
  font-size: 14px;
}

.footer-action-card strong {
  color: #67e8f9;
  font-size: 14px;
}

.footer-social-right {
  justify-content: flex-end;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: #94a3b8;
  font-size: 14px;
}

.footer-col a:hover,
.footer-contact-list a:hover,
.footer-bottom a:hover {
  color: #67e8f9;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #94a3b8;
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.comparison th,
.comparison td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  color: var(--heading);
  background: #f8fafc;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  overflow: hidden;
  border: 1px solid #d8e3f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
}

.blog-featured-media {
  min-height: 360px;
  background: #d8e3f0;
}

.blog-featured-media img,
.blog-card-media img,
.article-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-body {
  padding: 36px;
  align-self: center;
}

.blog-featured-body h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.blog-featured-body a,
.blog-card h3 a {
  color: inherit;
}

.blog-featured-body p {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.blog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin: 52px 0 24px;
}

.blog-count {
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 112px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
}

.blog-count strong {
  color: #0f172a;
  font-size: 42px;
  line-height: 1;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body > span {
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.blog-card h3 {
  margin: 9px 0 10px;
  font-size: 21px;
  line-height: 1.22;
}

.blog-card p {
  color: #475569;
  line-height: 1.65;
}

.article-hero {
  padding: 54px 0;
  border-bottom: 1px solid #dbe4ef;
  background: #f8fafc;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.article-hero h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.02;
}

.article-hero p {
  max-width: 760px;
  color: #475569;
  font-size: 20px;
  line-height: 1.7;
}

.article-hero img {
  min-height: 360px;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.article-content {
  max-width: 780px;
}

.article-content p,
.article-content li {
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
}

.article-content h2 {
  margin: 34px 0 12px;
  font-size: 30px;
}

.article-content ul {
  padding-left: 22px;
}

.article-source {
  margin-top: 30px;
  padding: 16px;
  overflow-wrap: anywhere;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.article-sidebar .text-link {
  display: block;
  padding: 7px 0;
}

.article-related {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.article-related span {
  display: block;
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-related strong {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
    font-size: 22px;
  }

  .brand-logo {
    width: auto;
    height: 46px;
    max-height: 46px;
  }

  .header-right {
    display: none;
  }

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    align-content: center;
    gap: 4px;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero-content,
  .master-hero-grid,
  .product-story,
  .workflow-experience,
  .footer-cta,
  .footer-main,
  .feature-detail,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .master-hero-copy h1 {
    font-size: 44px;
  }

  .dashboard-metric-grid,
  .trust-metric-grid,
  .pricing-guide-grid,
  .proof-mockup-grid,
  .feature-bento-grid,
  .workflow-mini-grid,
  .detection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

  .hero-content {
    gap: 22px;
    min-height: 560px;
    padding: 42px 0 34px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 46px;
  }

  .hero-copy {
    max-width: 680px;
    font-size: 18px;
  }

  .hero-outcome-panel {
    min-height: 340px;
  }

  .hero-visual-card img {
    min-height: 340px;
  }

  .grid-3,
  .grid-4,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-photo,
  .analytics-photo-card,
  .feature-photo,
  .feature-photo img,
  .visual-image-panel,
  .visual-image-panel img {
    min-height: 340px;
  }

  .workflow-board {
    position: relative;
    top: auto;
  }

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

  .blog-featured,
  .blog-tools,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .article-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    gap: 12px;
  }

  .site-header .brand-logo {
    width: auto;
    height: 44px;
    max-height: 44px;
  }

  .site-footer .footer-brand .brand-logo {
    width: auto;
    height: 44px;
    max-height: 44px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    min-height: 520px;
    gap: 16px;
    padding: 32px 0 28px;
  }

  .hero-slide-overlay {
    background:
      linear-gradient(180deg, rgba(2, 6, 23, 0.91) 0%, rgba(7, 17, 31, 0.82) 54%, rgba(2, 6, 23, 0.88) 100%);
  }

  .hero h1 {
    margin: 12px 0;
    font-size: 34px;
    line-height: 1.08;
  }

  .master-hero {
    padding: 42px 0 34px;
  }

  .master-hero-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .master-hero-copy p {
    font-size: 16px;
  }

  .dashboard-metric-grid,
  .dashboard-main-row,
  .review-layout,
  .trust-metric-grid,
  .pricing-guide-grid,
  .proof-mockup-grid,
  .feature-bento-grid,
  .workflow-mini-grid,
  .detection-grid {
    grid-template-columns: 1fr;
  }

  .mini-screen.wide,
  .feature-bento.large {
    grid-column: span 1;
  }

  .floating-metric {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
  }

  .trust-strip {
    display: none;
  }

  .hero-slider-controls {
    margin-top: 16px;
  }

  .hero-outcome-panel {
    display: none;
  }

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

  .metric-grid,
  .webcam-grid,
  .workflow-board-grid,
  .footer-action-grid,
  .grid-3,
  .grid-4,
  .timeline,
  .form-grid,
  .story-check-grid {
    grid-template-columns: 1fr;
  }

  .image-card a {
    grid-template-rows: 170px 1fr;
  }

  .story-photo,
  .analytics-photo-card,
  .feature-photo,
  .feature-photo img,
  .visual-image-panel,
  .visual-image-panel img {
    min-height: 280px;
  }

  .feature-detail-copy {
    padding: 20px;
  }

  .feature-outcome strong {
    font-size: 16px;
  }

  .feature-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .feature-photo figcaption strong {
    font-size: 18px;
  }

  .feature-process-card {
    min-height: auto;
    padding: 20px;
  }

  .story-photo-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .story-photo-badge strong {
    font-size: 17px;
  }

  .visual-image-panel figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .visual-image-panel figcaption strong {
    font-size: 18px;
  }

  .blog-featured-media,
  .article-hero img {
    min-height: 240px;
  }

  .blog-featured-body {
    padding: 22px;
  }

  .blog-featured-body h2,
  .article-hero h1 {
    font-size: 30px;
  }

  .blog-tools {
    margin: 34px 0 18px;
  }

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

  .article-hero {
    padding: 34px 0;
  }

  .article-hero p,
  .article-content p,
  .article-content li {
    font-size: 16px;
  }

  .workflow-card {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 15px;
  }

  .workflow-number {
    width: 42px;
    height: 42px;
    font-size: 13px;
  }

  .workflow-card > strong {
    grid-column: 1 / -1;
  }

  .workflow-rail:before {
    left: 20px;
  }

  .cta-band {
    padding: 28px;
  }

  .footer-cta {
    padding: 22px;
  }

  .footer-cta-actions .btn,
  .footer-action-card {
    width: 100%;
  }

  .footer-social-right {
    justify-content: flex-start;
  }

  .footer-brand-panel {
    padding: 20px;
  }

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

  .footer-bottom {
    display: grid;
  }

  .sticky-cta {
    display: none;
  }
}
