﻿:root {
  --ink: #091931;
  --slate: #1e293b;
  --muted: #64748b;
  --subtle: #94a3b8;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --soft-bg: #f8fafc;
  --blue: #0b6ffd;
  --blue-hover: #085ed7;
  --blue-soft: rgba(11, 111, 253, 0.08);
  --blue-border: rgba(11, 111, 253, 0.18);
  --blue-glow: rgba(11, 111, 253, 0.14);
  --cyan: #00b4d8;
  --green: #10b981;
  --green-soft: #ecfdf5;
  --purple: #8b5cf6;
  --purple-soft: #f5f3ff;
  --amber: #f59e0b;
  --card-bg: rgba(255, 255, 255, 0.96);
  --shadow-sm: 0 4px 12px rgba(9, 25, 49, 0.04);
  --shadow-md: 0 12px 32px -4px rgba(9, 25, 49, 0.08), 0 4px 12px rgba(9, 25, 49, 0.03);
  --shadow-lg: 0 20px 48px -8px rgba(9, 25, 49, 0.12), 0 8px 20px rgba(11, 111, 253, 0.06);
  --shadow-hover: 0 20px 44px -8px rgba(11, 111, 253, 0.18), 0 0 0 1px rgba(11, 111, 253, 0.2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fbfdff;
  color: var(--slate);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.brand, .btn, .eyebrow, .section-kicker,
.industry-card-title, .workflow-card-head strong,
.tile-title, .step-title, .step-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

h1:focus,
h1:focus-visible,
h2:focus,
h2:focus-visible,
h3:focus,
h3:focus-visible,
[tabindex="-1"]:focus,
[tabindex="-1"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* 4. Background Visual Treatment */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 180, 216, 0.09), transparent 40%),
    radial-gradient(circle at 15% 45%, rgba(11, 111, 253, 0.06), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f7fafe 50%, #f0f6fc 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}
.orb-1 {
  width: 500px;
  height: 500px;
  right: -140px;
  top: -100px;
  background: radial-gradient(circle, rgba(11, 111, 253, 0.15), transparent 70%);
  animation: floatOrb 14s ease-in-out infinite;
}
.orb-2 {
  width: 440px;
  height: 440px;
  left: -120px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12), transparent 70%);
  animation: floatOrb 18s ease-in-out infinite reverse;
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 111, 253, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 111, 253, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 85%);
}

/* Topbar */
.topbar {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 165px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.2s ease;
}
.brand:hover img { opacity: 0.9; }
.topbar-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.secure-pill {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-sm);
}
.secure-pill i { color: var(--blue); }
.reset-link {
  text-decoration: none;
  color: var(--muted) !important;
  font-weight: 700;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}
.reset-link:hover { color: var(--blue) !important; }

/* Hero Section */
.hero-shell {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4.5vw;
  padding: 40px 0 70px;
}
.industry-hero-shell {
  display: block;
  min-height: auto;
  padding: 30px 0 50px;
}
.industry-hero-shell .hero-copy { max-width: 100%; }

.eyebrow, .section-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue);
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eyebrow span {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

.hero-copy h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  color: var(--ink);
  margin: 14px 0 20px;
  max-width: 860px;
}
.hero-copy h1 span {
  background: linear-gradient(92deg, #075ce6 0%, #00a8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #475569;
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.btn {
  border-radius: var(--radius-md);
  font-weight: 700;
  padding: 12px 22px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary {
  border: 0;
  background: linear-gradient(135deg, #0b6ffd 0%, #0091ff 100%);
  box-shadow: 0 10px 24px -2px rgba(11, 111, 253, 0.32);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px rgba(11, 111, 253, 0.4);
  background: linear-gradient(135deg, #0961de 0%, #0082e6 100%);
  color: #fff;
}
.btn-lg {
  padding: 15px 28px;
  font-size: 1rem;
}
.btn-dark {
  background: #091931;
  color: #fff;
  border: 1px solid #1e293b;
}
.btn-dark:hover {
  background: #122847;
  color: #fff;
  transform: translateY(-2px);
}
.shine {
  position: relative;
  overflow: hidden;
}
.shine::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(110deg, transparent 40%, rgba(255, 255, 255, 0.35), transparent 60%);
  transform: translateX(-100%);
  animation: shineSweep 4.5s infinite;
}
.microcopy {
  font-size: 0.84rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.84rem;
  color: #475569;
  font-weight: 600;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-row i {
  color: var(--blue);
  font-size: 1rem;
}

/* 3. Hero Visual Graphic */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow-backdrop {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(11, 111, 253, 0.12) 0%, rgba(0, 180, 216, 0.06) 45%, transparent 70%);
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}
.workflow-canvas {
  position: relative;
  z-index: 1;
  width: min(440px, 94%);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: floatCanvas 7s ease-in-out infinite;
  overflow: hidden;
}
.canvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.canvas-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-status-pill {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(11, 111, 253, 0.08);
  border: 1px solid rgba(11, 111, 253, 0.18);
  padding: 4px 9px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(11, 111, 253, 0.6);
  animation: pulseDot 2s infinite;
}

.workflow-flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step-node {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 11px 14px;
  box-shadow: 0 3px 10px rgba(9, 25, 49, 0.04);
  transition: var(--transition);
  position: relative;
}
.flow-step-node.is-ai-node {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  border-color: #93c5fd;
  box-shadow: 0 6px 18px rgba(11, 111, 253, 0.1), 0 0 0 1px rgba(11, 111, 253, 0.12);
}
.ai-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(11, 111, 253, 0.1);
  color: var(--blue);
  padding: 3px 7px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.node-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.node-icon-circle.blue { background: #eff6ff; color: #2563eb; }
.node-icon-circle.cyan { background: #ecfeff; color: #0891b2; }
.node-icon-circle.stars { background: linear-gradient(135deg, #eff6ff, #faf5ff); color: #0b6ffd; }
.node-icon-circle.purple { background: #f5f3ff; color: #7c3aed; }
.node-icon-circle.green { background: #ecfdf5; color: #059669; }

.node-text {
  display: flex;
  flex-direction: column;
}
.node-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.node-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 18px;
  justify-content: center;
  position: relative;
}
.connector-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #cbd5e1, #93c5fd);
}
.flow-arrow {
  display: none;
}

.canvas-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  top: -80px;
  background: linear-gradient(180deg, transparent, rgba(11, 111, 253, 0.05), transparent);
  animation: scanLine 6s linear infinite;
  pointer-events: none;
}

/* Floating chips around the visual */
.floating-chip {
  position: absolute;
  z-index: 2;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 10px 24px rgba(9, 25, 49, 0.08);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  animation: floatChip 5s ease-in-out infinite;
}
.floating-chip i { font-size: 0.9rem; }
.chip-sync { left: -10px; top: 110px; color: #0284c7; }
.chip-sync i { color: #0284c7; }
.chip-ai { right: -15px; bottom: 130px; animation-delay: -2s; color: #7c3aed; }
.chip-ai i { color: #7c3aed; }
.chip-code { left: 20px; bottom: 35px; animation-delay: -3.5s; color: #059669; }
.chip-code i { color: #059669; }

/* 2. Industry & Workflow Cards */
.workflow-card-section {
  margin-top: 36px;
}
.workflow-prompt-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.industry-workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.workflow-cta-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  outline: none;
}
.workflow-cta-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  background: #ffffff;
}
.workflow-cta-card:active {
  transform: translateY(-1px);
}

.workflow-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.card-icon-bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 1.32rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.workflow-cta-card:hover .card-icon-bubble {
  transform: scale(1.08);
  background: rgba(11, 111, 253, 0.14);
}
.workflow-card-head strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.workflow-cta-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}
.card-link-arrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.workflow-cta-card:hover .card-link-arrow {
  gap: 10px;
}

/* 5. Visual Progress Indicator (Stepper) */
.validator-shell {
  margin-top: 15px;
}
.stepper-shell {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.stepper-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stepper-line-bg {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
  border-radius: 3px;
}
.stepper-line-fill {
  height: 100%;
  background: linear-gradient(90deg, #0b6ffd, #00b4d8);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.stepper-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}
.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  color: var(--subtle);
  transition: var(--transition);
}
.step-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s ease;
}

.stepper-step.is-completed .step-badge {
  background: #ecfdf5;
  border-color: #10b981;
  color: #059669;
}
.stepper-step.is-completed .step-label {
  color: #059669;
}
.stepper-step.is-active .step-badge {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 0 0 5px rgba(11, 111, 253, 0.18);
  transform: scale(1.06);
}
.stepper-step.is-active .step-label {
  color: var(--blue);
  font-weight: 800;
}
.stepper-step.is-future .step-badge {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
}

/* Form & Entry Cards */
.content-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}
.content-card h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  margin: 10px 0 12px;
}
.section-sub {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 24px;
}

/* 6. Workflow Preview Strip */
.workflow-preview-strip {
  background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.preview-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
}
.preview-note {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
}
.preview-nodes-track {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.preview-node {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(9, 25, 49, 0.04);
}
.preview-node i { color: var(--blue); }
.preview-connector {
  color: #94a3b8;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Option Grids (Step 1 & Step 2) */
.option-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.industry-grid, .process-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  outline: none;
}
.option-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
}
.option-card.selected {
  border-color: var(--blue);
  background: #f4f8ff;
  box-shadow: 0 0 0 1px var(--blue);
}
.option-card .radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.option-card.selected .radio-dot {
  border-color: var(--blue);
  background: var(--blue);
}
.option-card.selected .radio-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}
.option-card i.bi-arrow-right-short {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--subtle);
  transition: transform 0.2s ease, color 0.2s ease;
}
.option-card:hover i.bi-arrow-right-short {
  transform: translateX(4px);
  color: var(--blue);
}

.process-input {
  min-height: 150px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 16px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
  box-shadow: inset 0 2px 4px rgba(9, 25, 49, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.process-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 111, 253, 0.12);
  outline: none;
}
.example-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}
.example-row button {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: var(--transition);
}
.example-row button:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: var(--ink);
}
.card-actions {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.card-actions.between {
  justify-content: space-between;
}
.character-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* 8. Animated Analysis State */
.analyze-card {
  padding: 50px 30px;
}
.analysis-radar-shell {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: radarPulse 2.4s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}
.radar-pulse-ring.ring-2 {
  animation-delay: 1.2s;
}
.radar-center-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b6ffd, #00b4d8);
  color: #fff;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(11, 111, 253, 0.35);
}

.analyze-progress-line {
  max-width: 460px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  margin: 22px auto 30px;
  overflow: hidden;
}
.progress-line-fill {
  height: 100%;
  background: linear-gradient(90deg, #0b6ffd, #00b4d8);
  animation: fillProgress 2.5s ease-in-out infinite;
  border-radius: 4px;
}

.analysis-sequence-list {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.sequence-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  opacity: 0;
  transform: translateY(6px);
  animation: seqFadeIn 0.4s ease forwards;
}
.sequence-item.step-1 { animation-delay: 0.15s; }
.sequence-item.step-2 { animation-delay: 0.45s; }
.sequence-item.step-3 { animation-delay: 0.75s; }
.sequence-item.step-4 { animation-delay: 1.05s; }
.sequence-item.step-5 { animation-delay: 1.35s; }

.seq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(11, 111, 253, 0.08);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.seq-text { flex-grow: 1; }
.seq-status {
  color: #10b981;
  font-size: 1rem;
}
.seq-status.pulse-dot-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulseDot 1.5s infinite;
}

/* 7. Results Graphics & Verdict Grid */
.results-grid {
  display: grid;
  gap: 24px;
}
.results-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 12px;
}
.verdict-tile {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.verdict-tile.tech-fit-tile {
  border-top: 4px solid var(--blue);
}
.verdict-tile.implementation-tile {
  border-top: 4px solid #10b981;
}
.verdict-tile.implementation-tile.path-simbion {
  border-top-color: #8b5cf6;
}
.verdict-tile.implementation-tile.path-hybrid {
  border-top-color: #0b6ffd;
}

.tile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tile-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.complexity-badge {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.complexity-badge.badge-low { background: #ecfdf5; color: #059669; }
.complexity-badge.badge-medium { background: #eff6ff; color: #2563eb; }
.complexity-badge.badge-high { background: #fef3c7; color: #b45309; }

.tile-main-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tile-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
}
.tile-icon-circle.path-icon {
  background: #ecfdf5;
  color: #059669;
}
.implementation-tile.path-simbion .tile-icon-circle.path-icon {
  background: #f5f3ff;
  color: #7c3aed;
}
.implementation-tile.path-hybrid .tile-icon-circle.path-icon {
  background: #eff6ff;
  color: #2563eb;
}

.tile-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.tile-sub {
  font-size: 0.76rem;
  color: var(--muted);
}
.tech-components-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tech-chip i { color: var(--blue); }
.implementation-explanation {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Step-by-step Assessment Pipeline */
.steps-card .steps-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.step-count {
  font-size: 0.78rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.assessment-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.assessment-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.assessment-step:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(9, 25, 49, 0.05);
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue);
}
.step-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.step-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.step-description {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}
.step-reason-box {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11, 111, 253, 0.06);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.78rem;
  color: #1e40af;
  margin-top: 4px;
}

/* Recommendation Type Badges */
.type-pill {
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.type-pill.type-automation { background: #e0f2fe; color: #0369a1; }
.type-pill.type-integration { background: #f0fdf4; color: #15803d; }
.type-pill.type-ai { background: #fdf4ff; color: #a21caf; }
.type-pill.type-custom { background: #fef2f2; color: #b91c1c; }
.type-pill.type-human { background: #fefce8; color: #a16207; }
.type-pill.type-diy { background: #f1f5f9; color: #475569; }

/* Report Gate & Consultation CTA */
.report-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafe 100%);
}
.report-copy h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0 12px;
}
.report-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.report-copy ul {
  padding-left: 20px;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.8;
}
.lead-form label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 5px;
}
.lead-form label span {
  font-weight: 400;
  color: var(--muted);
}
.lead-form .form-control {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 0.92rem;
}
.lead-form .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 111, 253, 0.12);
}
.privacy-note {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.consultation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #091931 0%, #0e2446 100%);
  color: #fff;
  border: 0;
}
.consultation-card .section-kicker { color: #38bdf8; }
.consultation-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 6px 0 10px;
}
.consultation-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}
.consultation-card .btn-dark {
  background: #fff;
  color: var(--ink);
  border: 0;
  white-space: nowrap;
}
.consultation-card .btn-dark:hover {
  background: #f1f5f9;
  color: var(--blue);
}

.success-state {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
}
.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  font-size: 1.8rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

/* Animations */
.fade-up {
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes floatCanvas {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shineSweep {
  0%, 70% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes scanLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(440px); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(11, 111, 253, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(11, 111, 253, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 111, 253, 0); }
}
@keyframes radarPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes fillProgress {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@keyframes seqFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.confetti-piece {
  position: fixed;
  z-index: 9999;
  width: 8px;
  height: 12px;
  top: -20px;
  pointer-events: none;
  animation: confettiFall 1.8s ease-in forwards;
}
@keyframes confettiFall {
  to { transform: translate(var(--x), 105vh) rotate(720deg); opacity: 0.1; }
}

/* 11. Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Responsive Media Queries */
@media (max-width: 960px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 20px;
  }
  .hero-copy h1 { font-size: clamp(2.3rem, 7vw, 3.6rem); }
  .hero-visual { min-height: 420px; }
  .report-gate { grid-template-columns: 1fr; }
  .results-verdict-grid { grid-template-columns: 1fr; }
  .consultation-card { flex-direction: column; align-items: flex-start; }
  .secure-pill { display: none; }
}

@media (max-width: 640px) {
  .topbar { height: 75px; }
  .brand img { width: 135px; height: 50px; }
  .hero-shell { padding-bottom: 40px; }
  .content-card { padding: 22px 16px; }
  .stepper-shell { padding: 14px 10px; }
  .step-label { display: none; }
  .stepper-line-bg { left: 16px; right: 16px; top: 18px; }
  .step-badge { width: 34px; height: 34px; font-size: 0.88rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .workflow-canvas { width: 100%; padding: 18px 14px; }
  .floating-chip { font-size: 0.68rem; }
  .chip-sync { left: -5px; top: 70px; }
  .chip-ai { right: -5px; bottom: 80px; }
  .chip-code { left: 10px; bottom: 10px; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; }
}