:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #0c0c0c;
  --surface-muted: #141414;
  --text: #f5f5f5;
  --text-muted: #a1a1a6;
  --accent: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --pill-waiting: rgba(255, 255, 255, 0.1);
  --pill-active: rgba(255, 255, 255, 0.22);
  --pill-done: rgba(255, 255, 255, 0.4);
  --radius-large: 32px;
  --radius-medium: 20px;
  --radius-small: 12px;
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font, 'Inter', sans-serif);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  opacity: 0.7;
}

.site-header {
  position: relative;
  overflow: hidden;
  padding: 120px clamp(24px, 6vw, 72px) 96px;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: -20% -40% auto;
  height: 480px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 60%);
  transform: rotate(-4deg);
  animation: glowShift 12s ease-in-out infinite alternate;
}

@keyframes glowShift {
  from {
    transform: translateY(-8px) rotate(-4deg);
  }
  to {
    transform: translateY(8px) rotate(-2deg);
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 50%;
  top: 24px;
  transform: translate(-50%, 0);
  z-index: 20;
  padding: 18px 28px;
  width: min(92%, 1080px);
  border-radius: 999px;
  border: 1px solid transparent;
  backdrop-filter: blur(28px);
  background: rgba(5, 5, 5, 0.35);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}


.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.55));
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  letter-spacing: 0.32em;
  font-size: 0.78rem;
}

.nav--hero .nav-links {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.nav--compact {
  background: rgba(7, 7, 7, 0.78);
  border-color: var(--border);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -12px);
}

.nav--hero {
  background: rgba(5, 5, 5, 0.12);
  border-color: transparent;
  box-shadow: none;
  transform: translate(-50%, 0);
}

.nav--compact .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav--compact .logo-text {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: opacity 0.2s ease;
}

.primary-link {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}

.hero-copy p {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1.05rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 4rem);
  line-height: 1.05;
}

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

.hero-actions .primary {
  background: var(--accent);
  color: var(--bg);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.hero-actions .primary:hover {
  transform: translateY(-2px);
}

.hero-actions .secondary {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 1.1s ease 0.15s forwards;
  opacity: 0;
  flex-direction: column;
  gap: 24px;
}

.workflow-demo--hero {
  position: relative;
  padding: 28px 28px 32px;
  width: min(440px, 100%);
  box-shadow: 0 38px 90px rgba(8, 12, 22, 0.6);
}

.workflow-demo--hero .workflow-track {
  margin-top: 12px;
  margin-bottom: 28px;
}

.workflow-badge {
  position: absolute;
  top: 22px;
  left: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-status {
  display: grid;
  gap: 12px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(5, 7, 12, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-row--live {
  background: linear-gradient(120deg, rgba(96, 172, 255, 0.22), rgba(96, 172, 255, 0));
  border-color: rgba(96, 172, 255, 0.24);
  box-shadow: 0 0 18px rgba(96, 172, 255, 0.25);
}

.status-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(96, 172, 255, 0.8);
  box-shadow: 0 0 12px rgba(96, 172, 255, 0.6);
}

.status-icon--notify {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.status-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.status-title {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.status-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.status-badge {
  margin-left: auto;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(96, 172, 255, 0.4);
  color: rgba(96, 172, 255, 0.9);
  background: rgba(96, 172, 255, 0.18);
  animation: statusPulse 3.6s ease-in-out infinite;
}

.status-badge--dim {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  animation: none;
}

.section {
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 88px);
  position: relative;
  scroll-margin-top: 160px;
}

.section.highlight {
  background: var(--surface);
}

.section.workflow {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.section.personas {
  background: var(--surface-muted);
}

.section.credibility {
  padding: clamp(80px, 12vw, 160px) 0;
}


.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-header h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-subtitle {
  margin-top: 18px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

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

.feature-card .feature-visual {
  align-self: flex-start;
  margin-bottom: 4px;
}

.feature-visual {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 18px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.25);
}

.feature-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.feature-visual > * {
  position: relative;
  z-index: 1;
}

.feature-qr .qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 52px;
  height: 52px;
}

.feature-qr .qr-grid span {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  animation: qrPulse 3.4s ease-in-out infinite;
  animation-play-state: paused;
}

.feature-qr .qr-grid span:nth-child(2n) {
  opacity: 0.6;
}

.feature-qr .qr-grid span:nth-child(3),
.feature-qr .qr-grid span:nth-child(5),
.feature-qr .qr-grid span:nth-child(8) {
  opacity: 0.35;
}

.feature-qr .qr-scan {
  position: absolute;
  inset: -30%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  mix-blend-mode: screen;
  transform: translateY(-120%);
  animation: qrScan 3.8s ease-in-out infinite;
  animation-play-state: paused;
}

.feature-offline {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.feature-offline .offline-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offline-stack .stack-item {
  height: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.offline-stack .stack-item:nth-child(2) {
  width: 72%;
}

.offline-stack .stack-item:nth-child(3) {
  width: 48%;
}

.offline-stack .stack-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: translateX(-120%);
  animation: stackSweep 3.2s ease-in-out infinite;
  animation-play-state: paused;
}

.offline-stack .stack-item:nth-child(2)::after {
  animation-delay: 0.5s;
}

.offline-stack .stack-item:nth-child(3)::after {
  animation-delay: 1s;
}

.offline-signal {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  animation: signalPulse 2.5s ease-in-out infinite;
  animation-play-state: paused;
}

.signal-dot:nth-child(2) {
  animation-delay: 0.25s;
}

.signal-dot:nth-child(3) {
  animation-delay: 0.5s;
}

.feature-homeowner {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.pulse-track {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  overflow: visible;
}

.pulse-track::before,
.pulse-track::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 16px;
  top: -7px;
  background: rgba(255, 255, 255, 0.14);
}

.pulse-track::before {
  left: 26%;
}

.pulse-track::after {
  left: 72%;
}

.pulse-dot {
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.65);
  transform: translateX(0);
  animation: pulseTravel 4s ease-in-out infinite;
  animation-play-state: paused;
}

.pulse-trail {
  position: absolute;
  left: 0;
  top: -4px;
  width: 34%;
  height: 10px;
  background: radial-gradient(circle at left, rgba(255, 255, 255, 0.7), transparent 65%);
  filter: blur(6px);
  opacity: 0;
  transform: translateX(-40%);
  animation: pulseTrail 4s ease-in-out infinite;
  animation-play-state: paused;
}

.feature-supervisor {
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 42px;
}

.bar-chart .bar {
  flex: 1;
  min-width: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  transform-origin: bottom;
  transform: scaleY(0.2);
  animation: barRise 3s ease-in-out infinite;
  animation-play-state: paused;
}

.bar-chart .bar:nth-child(2) {
  animation-delay: 0.3s;
}

.bar-chart .bar:nth-child(3) {
  animation-delay: 0.6s;
}

.bar-chart .bar:nth-child(4) {
  animation-delay: 0.9s;
}

.chart-cursor {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
  top: 32px;
  left: 24px;
  background: rgba(255, 255, 255, 0.12);
  animation: cursorSweep 3.4s ease-in-out infinite;
  animation-play-state: paused;
}

.feature-card.visible .feature-qr .qr-grid span,
.feature-card.visible .feature-qr .qr-scan,
.feature-card.visible .feature-offline .stack-item::after,
.feature-card.visible .feature-offline .signal-dot,
.feature-card.visible .feature-homeowner .pulse-dot,
.feature-card.visible .feature-homeowner .pulse-trail,
.feature-card.visible .feature-supervisor .bar,
.feature-card.visible .feature-supervisor .chart-cursor {
  animation-play-state: running;
}

@keyframes qrPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes qrScan {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: translateY(40%);
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

@keyframes stackSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes pulseTravel {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(calc(55% - 6px));
  }
  100% {
    transform: translateX(calc(100% - 12px));
  }
}

@keyframes pulseTrail {
  0% {
    transform: translateX(-40%);
    opacity: 0;
  }
  35% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}

@keyframes barRise {
  0% {
    transform: scaleY(0.2);
    opacity: 0.4;
  }
  40% {
    transform: scaleY(1);
    opacity: 1;
  }
  70% {
    transform: scaleY(0.65);
  }
  100% {
    transform: scaleY(0.9);
    opacity: 0.85;
  }
}

@keyframes cursorSweep {
  0% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  40% {
    transform: translate(18px, -12px);
    opacity: 1;
  }
  100% {
    transform: translate(40px, 6px);
    opacity: 0.6;
  }
}

@keyframes stepScanLine {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    transform: translateY(80%);
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

@keyframes captureFlash {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  18% {
    opacity: 1;
    transform: scale(1.05);
  }
  40% {
    opacity: 0;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes captureButton {
  0% {
    transform: translate(-50%, 0) scale(1);
  }
  35% {
    transform: translate(-50%, 2px) scale(0.8);
  }
  100% {
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes closePulse {
  0% {
    transform: scale(0.85);
    border-color: rgba(255, 255, 255, 0.28);
  }
  40% {
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.45);
  }
  70% {
    transform: scale(0.9);
    border-color: rgba(255, 255, 255, 0.35);
  }
  100% {
    transform: scale(0.95);
    border-color: rgba(255, 255, 255, 0.32);
  }
}

@keyframes valuePulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes mapDrift {
  0% {
    transform: rotate(-2deg) translateY(-8px);
  }
  50% {
    transform: rotate(-1deg) translateY(6px);
  }
  100% {
    transform: rotate(-2.5deg) translateY(-4px);
  }
}

.workflow-stage {
  position: relative;
  margin-top: clamp(48px, 8vw, 96px);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 320px));
  justify-content: center;
  gap: clamp(24px, 4vw, 40px);
  align-items: flex-start;
}

.step-card {
  --step-delay: 0s;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(60px);
  pointer-events: none;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.step-card:nth-child(2) {
  --step-delay: 0.5s;
}

.step-card:nth-child(3) {
  --step-delay: 1s;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.6s ease;
  transition-delay: var(--step-delay);
  pointer-events: none;
}

.step-card.visible {
  visibility: visible;
  pointer-events: auto;
  animation: stepReveal 0.6s ease var(--step-delay) forwards;
}

.step-card.visible::before {
  opacity: 0.2;
}

.step-card.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.step-card.active::before {
  opacity: 0.5;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-content h3 {
  margin: 0;
  font-size: 1.6rem;
}

.step-content p {
  margin: 0;
  color: var(--text-muted);
}

.step-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.step-card.active .step-note {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}


.step-visual {
  width: 120px;
  height: 120px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.35);
}

.step-visual::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.step-visual > * {
  position: relative;
  z-index: 1;
}

.step-visual--scan .scan-device {
  width: 74px;
  height: 98px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.scan-screen {
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scan-qr {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.scan-qr span {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
}

.scan-line {
  position: absolute;
  left: 14%;
  right: 14%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: translateY(-120%);
  opacity: 0.8;
  animation-duration: 2.8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.step-card.active .scan-line {
  animation-name: stepScanLine;
}

.step-visual--capture {
  justify-content: flex-end;
}

.capture-card {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.capture-card::before,
.capture-card::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.35;
}

.capture-card::before {
  transform: rotate(-7deg);
}

.capture-card::after {
  transform: rotate(9deg);
}

.capture-shot {
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.35);
}

.capture-flash {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 70%);
  opacity: 0;
  animation-duration: 3.2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}

.capture-button {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.45);
  animation-duration: 3.2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.step-card.active .capture-flash {
  animation-name: captureFlash;
}

.step-card.active .capture-button {
  animation-name: captureButton;
}

.step-visual--close {
  justify-content: center;
}

.close-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  transform: scale(0.85);
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.step-card.active .close-ring {
  animation-name: closePulse;
}

.close-glow {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 65%);
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.step-card.active .close-glow {
  opacity: 0.65;
}

.close-check {
  position: absolute;
  width: 42px;
  height: 24px;
  border-left: 3px solid rgba(255, 255, 255, 0.85);
  border-bottom: 3px solid rgba(255, 255, 255, 0.85);
  transform: rotate(-45deg) scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.step-card.active .close-check {
  transform: rotate(-45deg) scaleX(1);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.persona-card {
  padding: 32px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.persona-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.persona-card.visible::after {
  opacity: 0.55;
}

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

.persona-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.persona-card li {
  margin-bottom: 8px;
}


.persona-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.65);
}

.value-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0;
  transform: scale(0.6);
  transition: transform 0.6s ease, opacity 0.6s ease;
  animation: valuePulse 4.2s ease-in-out infinite;
  animation-play-state: paused;
}

.persona-card.visible .value-icon::after {
  opacity: 1;
  transform: scale(1.2);
  animation-play-state: running;
}

.value-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}


.credibility {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 60%);
  overflow: hidden;
  min-height: clamp(520px, 68vw, 840px);
}

.credibility-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  background-image: linear-gradient(135deg, rgba(8, 8, 8, 0.65), rgba(12, 12, 12, 0.35)), url('assets/map.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 45px 90px rgba(0, 0, 0, 0.65));
  pointer-events: none;
  transform: none;
  opacity: 1;
  overflow: hidden;
  animation: mapDrift 20s ease-in-out infinite alternate;
  z-index: 0;
}

.credibility-map::before {
  content: '';
  position: absolute;
  inset: -18%;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.22) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 1px, transparent 1px, transparent 18px),
    radial-gradient(circle at 28% 32%, rgba(255, 255, 255, 0.2), transparent 58%),
    radial-gradient(circle at 68% 64%, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.credibility-map::after {
  content: '';
  position: absolute;
  inset: -12%;
  border-radius: 52px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.48;
}

.map-frame {
  position: absolute;
  inset: 8%;
  border-radius: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}


.map-room {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35), 0 18px 36px rgba(0, 0, 0, 0.35);
}


.map-room::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.18);
  opacity: 0.85;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.map-room--living {
  top: 12%;
  left: 8%;
  width: 46%;
  height: 38%;
}

.map-room--living::after {
  inset: 18% 18% 18%;
}

.map-room--kitchen {
  top: 12%;
  right: 8%;
  width: 30%;
  height: 28%;
}

.map-room--kitchen::after {
  inset: 16% 18% 14% 18%;
}

.map-room--suite {
  bottom: 12%;
  left: 8%;
  width: 38%;
  height: 32%;
}

.map-room--suite::after {
  inset: 15% 16% 18% 16%;
}

.map-room--bath {
  bottom: 12%;
  right: 8%;
  width: 28%;
  height: 24%;
}

.map-room--bath::after {
  inset: 18% 18% 18% 24%;
}


.map-hall {
  position: absolute;
  top: 48%;
  left: 8%;
  right: 8%;
  height: 12%;
  border: 1.5px dashed rgba(255, 255, 255, 0.55);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.map-legend {
  position: absolute;
  bottom: 8%;
  right: 10%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.legend-text {
  opacity: 0.8;
}


.credibility-card {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  background: rgba(5, 5, 5, 0.82);
  border-radius: var(--radius-large);
  padding: clamp(48px, 8vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px);
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.6);
  margin: 0 clamp(24px, 8vw, 160px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.badge {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
}

.cta {
  background: var(--surface);
}

.cta-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 5vw, 52px);
  padding: clamp(40px, 7vw, 72px);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  align-items: start;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
}

.cta-copy p {
  color: var(--text-muted);
}

.cta-form {
  display: grid;
  gap: 20px;
}

.cta-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.cta-form label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.cta-form input,
.cta-form textarea {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 1rem;
  resize: vertical;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-form button {
  justify-self: start;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

@media (max-width: 720px) {
  .cta-card {
    padding: clamp(28px, 8vw, 44px);
  }

  .cta-fields {
    grid-template-columns: 1fr;
  }
}

.footer {
  padding: 60px clamp(24px, 6vw, 72px);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-meta {
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.pricing-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 96px);
}

.pricing-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}

.pricing-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.05;
}

.pricing-hero-copy p {
  color: var(--text-muted);
  font-size: 1.08rem;
}


.pricing-hero-panel {
  align-self: stretch;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(32px, 5vw, 48px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-hero-panel h3 {
  margin: 0;
}

.pricing-hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 10px;
}

.workflow-demo {
  border-radius: calc(var(--radius-large) - 12px);
  padding: 24px;
  background: rgba(7, 11, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

.workflow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.workflow-card .step-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.qr-tag {
  position: relative;
  width: 128px;
  padding: 18px 18px 44px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.38));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.qr-face {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 50%, transparent 0),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 50%, transparent 0),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 25%, transparent 0);
  background-size: 14px 14px;
  background-repeat: repeat;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

.qr-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -35%);
  animation: qrPulse 3.6s ease-out infinite;
  z-index: 1;
}

.qr-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}

.phone {
  position: relative;
  width: 124px;
  height: 208px;
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
}

.scan-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, rgba(96, 172, 255, 0), rgba(96, 172, 255, 0.35), rgba(96, 172, 255, 0));
  animation: scanSweep 3.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.scan-pointer {
  position: absolute;
  top: 10%;
  right: 18%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(96, 172, 255, 0.9);
  box-shadow: 0 0 12px rgba(96, 172, 255, 0.6);
  animation: pointerTravel 3.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.update-panel {
  width: 168px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 5, 0.52);
  padding: 20px 18px;
  display: grid;
  gap: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.update-header {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  width: 60%;
}

.update-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.update-row--active {
  background: linear-gradient(120deg, rgba(96, 172, 255, 0.18), rgba(96, 172, 255, 0));
  animation: rowGlow 3.6s ease-in-out infinite;
}

.update-check,
.update-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(96, 172, 255, 0.7);
}

.update-check::after {
  content: '';
  position: absolute;
  top: 46%;
  left: 48%;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(96, 172, 255, 0.95);
  border-bottom: 2px solid rgba(96, 172, 255, 0.95);
  transform: translate(-50%, -60%) rotate(45deg);
}

.update-dot {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.update-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.workflow-benefits {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 10px;
}

.pricing-area {
  background: var(--surface);
}

.pricing-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.pricing-intro p {
  color: var(--text-muted);
}

.pricing-grid {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card {
  position: relative;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(32px, 5vw, 44px);
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 2.8rem;
  font-weight: 600;
}

.price-tag span {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-description {
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--accent);
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.plan-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.pricing-card--builder {
  background: linear-gradient(165deg, rgba(96, 172, 255, 0.28), rgba(0, 0, 0, 0.58));
  border-color: rgba(96, 172, 255, 0.32);
  box-shadow: 0 36px 60px rgba(12, 22, 40, 0.55);
}

.pricing-card--builder .plan-cta {
  border-color: rgba(96, 172, 255, 0.42);
  background: rgba(96, 172, 255, 0.16);
}

.pricing-card--builder .plan-cta:hover {
  background: rgba(96, 172, 255, 0.28);
  color: var(--bg);
}

.pricing-addons {
  margin-top: clamp(36px, 6vw, 56px);
  display: grid;
  gap: 16px;
  color: var(--text-muted);
  max-width: 640px;
}

.pricing-addons strong {
  color: var(--accent);
}

@media (max-width: 960px) {
  .pricing-hero {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .pricing-hero-panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  .workflow-demo {
    padding: 20px;
  }

  .workflow-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-card {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
  }

  .workflow-card .step-label {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .pricing-hero {
    gap: 32px;
  }

  .pricing-card {
    padding: 28px;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes qrPulse {
  0% {
    transform: translate(-50%, -35%) scale(0.6);
    opacity: 0.4;
  }
  55% {
    transform: translate(-50%, -35%) scale(1.4);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -35%) scale(1.4);
    opacity: 0;
  }
}

@keyframes scanSweep {
  0% {
    transform: translateY(-120%);
  }
  55% {
    transform: translateY(90%);
  }
  100% {
    transform: translateY(90%);
  }
}

@keyframes pointerTravel {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  55% {
    transform: translateY(120%);
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

@keyframes rowGlow {
  0% {
    box-shadow: 0 0 0 rgba(96, 172, 255, 0);
  }
  40% {
    box-shadow: 0 0 22px rgba(96, 172, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 rgba(96, 172, 255, 0);
  }
}

@keyframes statusPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(96, 172, 255, 0.0);
  }
  40% {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(96, 172, 255, 0.28);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(96, 172, 255, 0.0);
  }
}

@keyframes stepReveal {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .nav {
    top: 16px;
    width: min(94%, 720px);
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

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

  .hero-visual {
    margin-top: 32px;
  }

  .workflow-stage {
    height: auto;
    margin-top: 32px;
  }

  .workflow-steps {
    position: static;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step-card {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    border-color: rgba(255, 255, 255, 0.16);
  }

  .step-card::before {
    opacity: 0.2;
  }

  .step-visual {
    width: 100px;
    height: 100px;
  }

  .credibility-map {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-position: center;
  }

  .section {
    padding: clamp(64px, 12vw, 120px) 24px;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .credibility-map {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-position: center;
  }

  .map-legend {
    bottom: 6%;
    right: 50%;
    transform: translateX(50%);
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-demo--hero,
  .workflow-track,
  .workflow-card,
  .step-card {
    animation: none !important;
    transition-duration: 0s !important;
  }

  .step-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .step-card::before {
    transition-delay: 0s !important;
  }
}
