/* Auth & Landing Pages Styling - Stripe-inspired Design */
/* This file only affects landing.html, login.html, and register.html */

/* CSS Custom Properties - Brand Colors */
:root {
  --lockin-primary: #1e40af;
  --lockin-primary-dark: #1e3a8a;
  --lockin-primary-light: #3b82f6;
  --lockin-secondary: #0ea5e9;
  --lockin-accent: #0284c7;
  --lockin-success: #10b981;
  --lockin-warning: #f59e0b;
  --lockin-error: #ef4444;
  --lockin-gray-50: #f9fafb;
  --lockin-gray-100: #f3f4f6;
  --lockin-gray-200: #e5e7eb;
  --lockin-gray-300: #d1d5db;
  --lockin-gray-600: #4b5563;
  --lockin-gray-700: #374151;
  --lockin-gray-900: #111827;
}


#globalNetworkCanvas {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

/* Background emojis removed */


/* Floating particles removed */





/* Floating elements removed */


/* Auth Form Container */
.auth-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* Form Fields */
.auth-form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.auth-form-group label {
  display: block;
  color: var(--lockin-gray-700);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

/* Submit Button */
.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--lockin-primary), var(--lockin-primary-light));
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}


/* Flash Messages */
.auth-flash-messages {
  margin-bottom: 1.5rem;
}

.auth-flash-message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.auth-flash-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--lockin-error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.auth-flash-message.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--lockin-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}


/* Mobile Responsiveness */
@media (max-width: 640px) {
  .landing-hero h1 {
    font-size: 2.5rem;
  }
  
  .landing-hero p {
    font-size: 1.1rem;
  }
  
  .auth-form {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .auth-links {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}


/* High contrast mode support */
@media (prefers-contrast: high) {
  .auth-form {
    border: 2px solid var(--lockin-gray-900);
  }
  
  .auth-form-group input {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


#networkCanvas {
  width: 100%;
  height: 100%;
}

/* Float icons removed */

/* Dynamic shapes removed */


/* Flowing Lines Animation - REMOVED */

/* ===== YC-STYLE NAVBAR ===== */
.yc-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 200ms ease;
}

.yc-navbar.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.navbar-brand .logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--text-lg);
  transition: opacity 200ms ease;
}

.navbar-brand .logo-link:hover {
  opacity: 0.8;
}

.navbar-brand .logo-icon {
  color: var(--brand-blue);
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--text-primary);
}

.mobile-menu-toggle:hover {
  color: var(--brand-blue);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: color 200ms ease;
  padding: var(--space-xs) var(--space-sm);
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links .btn-primary-nav {
  background: var(--brand-blue);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background 200ms ease, transform 200ms ease;
}

.navbar-links .btn-primary-nav:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .navbar-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-out;
  }
  
  .navbar-links[aria-hidden="false"] {
    max-height: 100vh;
  }
  
  .navbar-links a {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-color, #e2e8f0);
  }
  
  .navbar-links a:last-child {
    border-bottom: none;
  }
  
  .navbar-links .btn-primary-nav {
    margin: var(--space-md) var(--space-lg);
    text-align: center;
  }
}

/* ===== YC-STYLE FOOTER ===== */
.yc-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  margin-top: var(--space-4xl);
}

.footer-grid {
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--text-lg);
}

.footer-logo svg {
  color: var(--brand-blue);
}

.footer-tagline {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

.footer-heading {
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

/* ===== YC-STYLE HERO SECTION ===== */
.yc-hero-section {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 2;
}

.yc-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.yc-hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: var(--space-xs) var(--space-md);
  border-radius: 50px;
  color: var(--brand-blue);
  font-weight: 500;
  font-size: var(--text-sm);
  margin-bottom: var(--space-2xl);
}

.yc-hero-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.yc-hero-lead {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.yc-hero-buttons {
  margin-bottom: var(--space-md);
}

.yc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--brand-blue);
  color: white;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: var(--shadow-md);
}

.yc-btn-primary:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.yc-hero-trust {
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

/* ===== YC-STYLE PRODUCT PREVIEW ===== */
.yc-product-preview {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 2;
}

.yc-dashboard-mockup {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.mockup-header {
  background: #1e40af;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-nav {
  display: flex;
  gap: var(--space-xs);
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mockup-title {
  color: white;
  font-weight: 600;
  font-size: var(--text-sm);
}

.mockup-content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.stat-icon {
  font-size: 2rem;
}

.stat-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.mockup-schedule {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.schedule-header {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-subtle);
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.schedule-item {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item .time {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 500;
}

.schedule-item .task {
  color: var(--text-primary);
  font-weight: 500;
}

.schedule-item .status {
  text-align: center;
  font-size: 1.2rem;
}

.schedule-item .status.completed {
  color: #10b981;
}

.schedule-item .status.current {
  color: var(--brand-blue);
}

.schedule-item .status.pending {
  color: var(--text-tertiary);
}

.mockup-chart {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.chart-header {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-sm);
  height: 120px;
}

.bar {
  flex: 1;
  background: var(--brand-blue);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  min-height: 20px;
}

@media (max-width: 640px) {
  .mockup-stats {
    grid-template-columns: 1fr;
  }
  
  .schedule-item {
    grid-template-columns: 80px 1fr 30px;
  }
}

/* ===== YC-STYLE VALUE PROPS SECTION ===== */
.yc-value-props-section {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 2;
}

.yc-section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.yc-section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 65ch;
  margin: 0 auto;
}

.yc-value-card {
  padding: var(--space-2xl);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: white;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.yc-value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.value-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--text-base);
}

/* ===== YC-STYLE FEATURES SECTION ===== */
.yc-features-section {
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 2;
}

.yc-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.yc-feature-row:last-child {
  margin-bottom: 0;
}

.yc-feature-row-reverse {
  direction: rtl;
}

.yc-feature-row-reverse > * {
  direction: ltr;
}

.yc-feature-visual {
  position: relative;
}

.feature-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.yc-feature-content {
  max-width: 500px;
}

.feature-heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.feature-body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .yc-feature-row,
  .yc-feature-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-2xl);
  }
  
  .yc-feature-content {
    max-width: none;
  }
}

/* ===== YC-STYLE CTA STRIP ===== */
.yc-cta-strip {
  background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue));
  color: white;
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 2;
  margin-top: var(--space-4xl);
}

.cta-strip-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  color: white;
}

.cta-strip-subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.yc-btn-cta {
  display: inline-block;
  background: white;
  color: var(--brand-blue);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-base);
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.yc-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-strip-fine-print {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* ===== FASTSHOT-STYLE STATIC GRADIENT BACKGROUND ===== */
.fastshot-gradient-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #E9F0FF 0%, #DCE8FF 40%, #F9FBFF 100%);
}

/* Old minimal hero styles - removed */

/* ===== FASTSHOT-STYLE NAVBAR (Ultra-Minimal & Fully Transparent) ===== */
.fastshot-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 0.5rem 2rem;
}

.navbar-container-fastshot {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  padding-left: 2rem;
}

.logo-link-fastshot {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.logo-img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

.logo-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  opacity: 0.95;
}

.navbar-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  padding-right: 2rem;
}

.nav-btn-text {
  color: #475569;
  font-weight: 500;
  text-decoration: none;
  padding: 0.375rem 1rem;
  transition: all 200ms ease;
  border-radius: 6px;
  font-size: 0.8125rem;
}

.nav-btn-text:hover {
  color: #0f172a;
  background: rgba(148, 163, 184, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.nav-btn-primary {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  padding: 0.375rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
  font-size: 0.8125rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.1);
}

.nav-btn-primary:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

/* ===== FASTSHOT-STYLE HERO SECTION ===== */
.fastshot-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 0 1 auto;
  min-height: 65vh;
  height: auto;
}

.fastshot-hero-container {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

/* Badge */
.fastshot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 0.9));
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 2px 8px rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

.fastshot-badge:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 4px 12px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Gradient Headline with Animation */
.fastshot-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0c1e3d 0%, #1e3a8a 30%, #1e40af 60%, #3b82f6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

.fastshot-headline .italic-text {
  font-style: italic;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Input Container */
.fastshot-input-container {
  position: relative;
  max-width: 580px;
  margin: 0 auto 2rem auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 
    0 20px 60px rgba(37, 99, 235, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.fastshot-input-container::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.fastshot-input-container:hover {
  box-shadow: 
    0 24px 72px rgba(37, 99, 235, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.2);
}

.fastshot-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #0f172a;
  outline: none;
  font-weight: 500;
}

.fastshot-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.fastshot-send-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.fastshot-send-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fastshot-send-btn:hover::before {
  opacity: 1;
}

.fastshot-send-btn:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  transform: scale(1.08);
  box-shadow: 
    0 8px 24px rgba(37, 99, 235, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Feature Pills */
.fastshot-pills {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.fastshot-pill {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fastshot-pill:hover {
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563eb;
  background: rgba(239, 246, 255, 0.95);
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* ===== HOW IT WORKS SECTION - MINIMALIST ROADMAP ===== */
.how-it-works-section {
  padding: 2rem 2rem 2.5rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.how-it-works-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Animated progress bar that goes through the numbers */
.roadmap-progress-bar {
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(203, 213, 225, 0.25);
  border-radius: 1px;
  z-index: 1;
}

.roadmap-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
  border-radius: 1px;
  transition: width 0s;
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.3);
}

.roadmap-progress-fill.animate {
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

/* Roadmap steps container */
.roadmap-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 0;
  gap: 2rem;
}

.step-card {
  flex: 1;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  opacity: 1;
  transition: none;
}

/* Step number circle - positioned on the line */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: #cbd5e1;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Filled state when progress bar reaches the number */
.step-card.active .step-number {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  border-color: #2563eb;
  box-shadow: 
    0 4px 16px rgba(37, 99, 235, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Step content */
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  transition: all 0.6s ease;
}

.step-card.active .step-title {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-description {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.5;
  font-weight: 400;
  max-width: 220px;
  transition: color 0.6s ease;
}

.step-card.active .step-description {
  color: #64748b;
}

/* Remove old arrow styles */
.step-arrow {
  display: none;
}

/* Responsive for tablets */
@media (max-width: 1024px) {
  .roadmap-steps {
    gap: 1.5rem;
  }
  
  .step-card {
    max-width: 240px;
  }
  
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 2rem 1rem 2.5rem 1rem;
  }
  
  .roadmap-progress-bar {
    top: 0;
    left: 24px;
    right: auto;
    width: 2px;
    height: calc(100% - 40px);
    bottom: 40px;
  }
  
  .roadmap-progress-fill {
    width: 100%;
    height: 0;
  }
  
  .roadmap-progress-fill.animate {
    transition: height 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
  }
  
  .roadmap-steps {
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 0;
    align-items: flex-start;
    padding-left: 60px;
  }
  
  .step-card {
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    position: absolute;
    left: -56px;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.8125rem;
    max-width: 100%;
  }
}

/* ===== FASTSHOT-STYLE FOOTER (Compact Single Line) ===== */
.fastshot-footer {
  padding: 0.875rem 2rem;
  background: transparent;
  margin-top: auto;
  flex-shrink: 0;
  min-height: 60px;
  height: auto;
  border-top: 1px solid rgba(226, 232, 240, 0.3);
  position: relative;
  z-index: 10;
  width: 100%;
}

/* No scrolling - everything fits in viewport */
.landing-body {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-body .main-content {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--fastshot-nav-height);
  flex: 1 0 auto;
  overflow: visible;
}

/* Auth pages (login/register) should also fit on screen */
.auth-base-body .main-content {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Smooth sequential fade-in up animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar stays static - no animation */
.fastshot-navbar {
  opacity: 1;
}

/* Sequential animations for landing page elements */
.fastshot-badge {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.fastshot-headline {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.fastshot-input-container {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.fastshot-pills {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.fastshot-footer {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.fastshot-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-links-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-links-left a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 200ms;
  font-weight: 300;
}

.footer-links-left a:hover {
  color: #64748b;
}

.footer-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-icon {
  color: #94a3b8;
  transition: color 200ms;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.social-icon svg {
  width: 15px;
  height: 15px;
}

.social-icon:hover {
  color: #2563eb;
}

.footer-copyright {
  display: none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .fastshot-hero {
    padding: 3rem 1rem;
    align-items: center;
    min-height: 55vh;
    height: auto;
  }
  
  .fastshot-headline {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }
  
  .fastshot-badge {
    font-size: 0.6875rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 1.25rem;
  }
  
  .fastshot-input-container {
    max-width: 100%;
    padding: 0.4rem;
    margin-bottom: 1.5rem;
  }
  
  .fastshot-input {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }
  
  .fastshot-send-btn {
    width: 44px;
    height: 44px;
  }
  
  .fastshot-pills {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .fastshot-pill {
    padding: 0.45rem 0.875rem;
    font-size: 0.75rem;
  }
  
  .fastshot-footer {
    padding: 0.625rem 1rem;
    min-height: 48px;
    height: auto;
  }
  
  .fastshot-footer-container {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-left {
    flex-direction: row;
    align-items: center;
  }
  
  .footer-links-left {
    gap: 1rem;
  }
  
  .footer-links-left a {
    font-size: 0.6875rem;
  }
  
  .footer-right {
    gap: 0.5rem;
  }
  
  .social-icon {
    width: 28px;
    height: 28px;
  }
  
  .social-icon svg {
    width: 13px;
    height: 13px;
  }
}

/* ===== PARROT-STYLE AUTH PAGES (LOGIN/SIGNUP) ===== */

/* Plain white background for auth pages only (not dashboard) */
.auth-base-body:not(.landing-body) {
  background: #f8f9fa !important;
}

.parrot-back-btn {
  position: fixed;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  color: #64748b;
  text-decoration: none;
  transition: all 200ms;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.parrot-back-btn:hover {
  background: #f8fafc;
  color: #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.parrot-auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
}

.parrot-auth-container {
  width: 100%;
  max-width: 420px;
}

.parrot-auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.parrot-auth-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.parrot-auth-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.375rem;
}

.parrot-auth-header p {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.parrot-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.parrot-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0f172a;
  background: white;
  transition: all 200ms ease;
  font-weight: 500;
}

.parrot-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.parrot-input::placeholder {
  color: #9ca3af;
  font-weight: 300;
}

.parrot-password-group {
  position: relative;
  display: flex;
  align-items: center;
}

.parrot-show-btn {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 200ms;
  padding: 0.25rem 0.5rem;
}

.parrot-show-btn:hover {
  color: #0f172a;
}

.parrot-forgot {
  text-align: center;
  font-size: 0.9375rem;
  color: #475569;
  margin-top: -0.5rem;
}

.parrot-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms;
}

.parrot-link:hover {
  color: #1e40af;
}

.parrot-submit-btn {
  background: #2563eb;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.parrot-submit-btn:hover {
  background: #1e40af;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.parrot-submit-btn:active {
  transform: scale(0.98);
}

.parrot-divider {
  text-align: center;
  position: relative;
  margin: 0.5rem 0;
}

.parrot-divider::before,
.parrot-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #e2e8f0;
}

.parrot-divider::before {
  left: 0;
}

.parrot-divider::after {
  right: 0;
}

.parrot-divider span {
  background: #f8f9fa;
  padding: 0 1rem;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

.parrot-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 200ms ease;
}

.parrot-google-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.parrot-auth-bottom {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.parrot-auth-bottom a {
  color: #64748b;
  text-decoration: none;
  transition: color 200ms;
}

.parrot-auth-bottom a:hover {
  color: #2563eb;
}

.parrot-separator {
  margin: 0 0.75rem;
  color: #cbd5e1;
}

.parrot-flash-messages {
  margin-bottom: 1rem;
}

.parrot-flash-message {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
}

.parrot-flash-message.error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.parrot-flash-message.success {
  background: #d1fae5;
  color: #16a34a;
  border: 1px solid #a7f3d0;
}

/* Checkbox Styling */
.parrot-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: #475569;
  font-weight: 400;
}

.parrot-checkbox-label input {
  display: none;
}

.parrot-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 200ms;
  background: white;
}

.parrot-checkbox-label input:checked + .parrot-checkbox {
  background: #2563eb;
  border-color: #2563eb;
}

.parrot-checkbox-label input:checked + .parrot-checkbox::after {
  content: '✓';
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
}

.parrot-checkbox-text {
  line-height: 1.5;
}

@media (max-width: 640px) {
  .fastshot-navbar {
    padding: 0.625rem 1rem;
  }
  
  .navbar-left {
    padding-left: 1rem;
  }
  
  .navbar-right {
    padding-right: 1rem;
    gap: 0.5rem;
  }
  
  .logo-text {
    font-size: 0.875rem;
  }
  
  .nav-btn-text,
  .nav-btn-primary {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
  }
  
  .parrot-auth-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .parrot-auth-container {
    max-width: 100%;
  }
  
  .parrot-auth-logo svg {
    width: 56px;
    height: 56px;
  }
  
  .parrot-auth-header h1 {
    font-size: 1.375rem;
  }
  
  .parrot-back-btn {
    top: 1rem;
    left: 1rem;
  }
}
