/* ==========================================================================
   Autocater Web Design System
   Matches Extension Aesthetic: Obsidian Dark, Neon Accent, Bespoke Vector SVGs
   ========================================================================== */

:root {
  --bg: #0e1115;
  --card-bg: #14181c;
  --card-bg-elevated: #1a2026;
  --card-border: #262d35;
  --card-border-hover: #3b4653;
  --accent: #00e054;
  --accent-glow: rgba(0, 224, 84, 0.2);
  --accent-subtle: rgba(0, 224, 84, 0.1);
  --accent-text: #052e14;
  
  --ink: #f0f3f6;
  --ink-muted: #8b949e;
  --ink-subtle: #6e7681;
  --pill-bg: #202730;

  --font-display: 'Fredoka', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 24px var(--accent-glow);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.25;
}

h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--ink-muted);
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 21, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 16px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  background: rgba(20, 24, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

.nav-glider {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  position: relative;
  z-index: 2;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #00e054;
  background: linear-gradient(135deg, rgba(0, 224, 84, 0.18) 0%, rgba(0, 224, 84, 0.08) 100%);
  border-color: rgba(0, 224, 84, 0.45);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 224, 84, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.nav-active-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e054;
  box-shadow: 0 0 10px #00e054;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.nav-active-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid #00e054;
  animation: beaconRipple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes beaconRipple {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2.5px;
  background: #00e054;
  border-radius: 9999px;
  box-shadow: 0 0 10px #00e054, 0 0 20px rgba(0, 224, 84, 0.6);
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 6px #00e054, 0 0 14px rgba(0, 224, 84, 0.4);
    opacity: 0.85;
  }
  to {
    box-shadow: 0 0 12px #00e054, 0 0 24px rgba(0, 224, 84, 0.8);
    opacity: 1;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 13.5px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #00ff60;
  color: var(--accent-text);
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  border: 1px solid rgba(0, 224, 84, 0.3);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 20px auto 32px;
  color: var(--ink-muted);
  font-weight: 400;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--accent-text);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.btn-primary:hover {
  background: #00ff60;
  color: var(--accent-text);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--card-bg-elevated);
  border-color: var(--card-border-hover);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Ambient Visual Demo (Card with glowing autofilled elements) */
.demo-preview-card {
  margin: 48px auto 0;
  max-width: 820px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-align: left;
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--card-border);
}

.demo-dots {
  display: flex;
  gap: 8px;
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--card-border);
}

.demo-url-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  color: var(--ink-subtle);
  border: 1px solid var(--card-border);
}

.demo-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
  flex-wrap: wrap;
  gap: 12px;
}

.demo-app-title-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.demo-company-name {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.demo-role-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-heading);
}

.demo-status-pill {
  font-size: 11px;
  font-weight: 600;
  background: rgba(0, 224, 84, 0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 224, 84, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

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

.demo-field-mock {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-subtle);
}

.demo-input {
  background: var(--bg);
  border: 1px solid var(--accent);
  box-shadow: 0 0 12px rgba(0, 224, 84, 0.15);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-input-check {
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
}

/* Dedicated Action Bar (Clean spacing, zero overlap) */
.demo-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
  flex-wrap: wrap;
  gap: 16px;
}

.demo-action-meta {
  font-size: 12px;
  color: var(--ink-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Floating Pill Interactive Callout */
.demo-floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-text);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13.5px;
  font-family: var(--font-heading);
  box-shadow: 0 8px 24px rgba(0, 224, 84, 0.35);
  animation: pillPulse 2.5s infinite;
  cursor: default;
}

@keyframes pillPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 224, 84, 0.35); }
  50% { transform: scale(1.03); box-shadow: 0 10px 30px rgba(0, 224, 84, 0.5); }
}

/* Trust Bar / Logos */
.trust-bar {
  padding: 40px 0;
  text-align: center;
}

.trust-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-subtle);
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 6px 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
}

/* Feature Grid */
.features-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-title {
  margin-bottom: 14px;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Content Pages (Legal & Guide Articles) */
.content-article {
  padding: 60px 0 100px;
}

.article-header {
  border: none !important;
  border-bottom: none !important;
  padding-bottom: 0;
  margin-bottom: 36px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-subtle);
}

.article-body {
  font-size: 15px;
  line-height: 1.75;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  border: 1px solid rgba(0, 224, 84, 0.25);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin: 52px 0 18px;
  padding: 0;
  border: none !important;
  border-top: none !important;
  display: block;
}

.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
}

.article-body p {
  margin-bottom: 18px;
  color: #c9d1d9;
}

.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  color: #c9d1d9;
}

.article-body li {
  margin-bottom: 8px;
}

.callout-box {
  background: var(--card-bg);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
}

/* Scrollytelling Stepper (User Guide) */
.scrolly-stepper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
  position: relative;
  margin: 32px 0 64px;
}

.stepper-timeline {
  position: relative;
  padding-left: 18px;
}

.stepper-spine {
  position: absolute;
  left: 36px;
  top: 36px;
  bottom: 80px;
  width: 2px;
  background: var(--card-border);
  border-radius: var(--radius-full);
  z-index: 0;
}

.stepper-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 8%;
  background: linear-gradient(180deg, var(--accent) 0%, #00ff60 100%);
  box-shadow: 0 0 12px var(--accent);
  border-radius: var(--radius-full);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-step {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 28px 56px;
  margin-bottom: 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-step:last-child {
  margin-bottom: 0;
}

.step-indicator {
  position: absolute;
  left: -18px;
  top: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg-elevated);
  border: 2px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-muted);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-step.is-active {
  border-color: rgba(0, 224, 84, 0.4);
  background: linear-gradient(145deg, rgba(20, 24, 28, 0.95) 0%, rgba(14, 17, 21, 0.95) 100%);
  box-shadow: 0 12px 36px -10px rgba(0, 224, 84, 0.16);
  transform: translateX(4px);
}

.stepper-step.is-active .step-indicator {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent);
  transform: scale(1.08);
}

.stepper-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--ink);
  transition: color 0.25s ease;
}

.stepper-step.is-active h3 {
  color: #ffffff;
}

.stepper-step p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.stepper-step ul {
  margin: 0 0 0 18px;
  color: #c9d1d9;
  font-size: 13.5px;
}

.stepper-step li {
  margin-bottom: 8px;
}

/* Sticky Stage Container */
.stepper-stage-wrap {
  position: sticky;
  top: 96px;
  height: 480px;
}

.stepper-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-stage::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 224, 84, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.step-mockup {
  position: absolute;
  inset: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.step-mockup.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Bespoke Vector Mockup Components */
.mockup-window {
  background: #0f1317;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mockup-header {
  background: #151a20;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2b333d;
}

.mockup-dot:nth-child(1) { background: #ff5f56; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-title {
  font-size: 11.5px;
  color: var(--ink-subtle);
  font-family: var(--font-heading);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-content {
  padding: 20px;
}

/* Mockup 1: Resume Dropzone */
.dropzone-box {
  border: 2px dashed rgba(0, 224, 84, 0.45);
  background: rgba(0, 224, 84, 0.03);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scan-beam {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00e054, transparent);
  box-shadow: 0 0 12px #00e054;
  animation: scanBeam 2.4s infinite ease-in-out;
}

@keyframes scanBeam {
  0% { top: 10%; opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

.dropzone-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--accent);
}

.extracted-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 224, 84, 0.3);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip-tag span {
  color: var(--accent);
  font-weight: 700;
}

/* Mockup 2: ATS Recognition */
.ats-badge-card {
  background: rgba(0, 224, 84, 0.12);
  border: 1px solid rgba(0, 224, 84, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ats-badge-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ats-radar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  position: relative;
  flex-shrink: 0;
}

.ats-radar-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  animation: beaconRipple 1.8s infinite;
}

/* Mockup 3: Floating Pill */
.mockup-form-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.mockup-input-group label {
  font-size: 11px;
  color: var(--ink-subtle);
  display: block;
  margin-bottom: 4px;
}

.mockup-input-group .fake-input {
  height: 34px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--ink-muted);
}

.floating-pill-showcase {
  position: absolute;
  right: 8px;
  bottom: -4px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-text);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 12px;
  font-family: var(--font-heading);
  box-shadow: 0 8px 24px rgba(0, 224, 84, 0.45);
  animation: pillPulse 2.5s infinite;
}

.cursor-clicker {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 28px;
  bottom: -12px;
  z-index: 15;
  animation: clickMotion 2.5s infinite ease-in-out;
}

@keyframes clickMotion {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.85) translate(2px, 2px); }
}

/* Mockup 4: Instant Autofill Verified */
.fake-input.filled {
  border-color: var(--accent);
  background: rgba(0, 224, 84, 0.05);
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 0 12px rgba(0, 224, 84, 0.15);
  display: flex;
  justify-content: space-between;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
}

/* Inline Mobile Fallback */
.step-inline-mockup {
  display: none;
}

@media (max-width: 960px) {
  .scrolly-stepper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stepper-stage-wrap {
    display: none;
  }
  .step-inline-mockup {
    display: block;
    margin-top: 18px;
  }
  .stepper-spine {
    display: none;
  }
  .stepper-timeline {
    padding-left: 0;
  }
  .stepper-step {
    padding: 24px;
  }
  .step-indicator {
    position: static;
    margin-bottom: 14px;
  }
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: radial-gradient(circle at 50% 0%, rgba(0, 224, 84, 0.12), transparent 70%), var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  max-width: 520px;
  margin: 0 auto 28px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 48px 0 32px;
  font-size: 13.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 12px;
  max-width: 300px;
  font-size: 13px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: var(--ink-muted);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  color: var(--ink-subtle);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .demo-form-grid {
    grid-template-columns: 1fr;
  }
  .demo-floating-pill {
    position: static;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .guide-step-card {
    flex-direction: column;
    gap: 16px;
  }
}
