/* Auth & Landing Pages Styling - Loki.Build Professional Style (Light Mode) */
/* 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;
  
  /* Typography - Cursive fonts for elegance */
  --font-cursive: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Prevent zoom-out gap issues */
* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


#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: var(--lockin-primary);
  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;
}

.auth-submit-btn:hover {
  background: var(--lockin-primary-light);
}


/* 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;
  }

  /* Ensure the walkthrough remains readable without scroll-driven motion */
  .landing-parallax[data-enhanced="true"] .parallax-pin {
    height: auto;
    min-height: unset;
  }

  .landing-parallax[data-enhanced="true"] .parallax-panel {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
  }
}


#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: 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;
}

/* ===== LOKI-STYLE DOT GRID BACKGROUND (Light Mode) ===== */
.fastshot-gradient-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #ffffff;
  background-image: 
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  transition: background-image 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== FLOATING MOCKUPS (Loki Style) ===== */
.hero-floating-mockups {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.floating-mockup {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0.85);
}

.floating-mockup img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 
    0 20px 50px rgba(15, 23, 42, 0.1),
    0 8px 20px rgba(15, 23, 42, 0.06);
}

/* Positioning for each mockup - Loki style scattered layout (more spread out) */
.floating-mockup-1 {
  top: 8%;
  left: 3%;
  width: 300px;
  --rotation: -8deg;
  animation: mockupFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards,
             float 20s ease-in-out 1.5s infinite;
}

.floating-mockup-2 {
  top: 5%;
  right: 5%;
  width: 340px;
  --rotation: 6deg;
  animation: mockupFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards,
             float 20s ease-in-out 1.7s infinite;
}

.floating-mockup-3 {
  bottom: 5%;
  left: 6%;
  width: 320px;
  --rotation: 5deg;
  animation: mockupFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards,
             float 20s ease-in-out 1.9s infinite;
}

.floating-mockup-4 {
  bottom: 8%;
  right: 4%;
  width: 280px;
  --rotation: -7deg;
  animation: mockupFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards,
             float 20s ease-in-out 2.1s infinite;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(var(--rotation, 0deg));
  }
  25% {
    transform: translateY(-20px) scale(1) rotate(calc(var(--rotation, 0deg) + 2deg));
  }
  50% {
    transform: translateY(-10px) scale(1) rotate(var(--rotation, 0deg));
  }
  75% {
    transform: translateY(-25px) scale(1) rotate(calc(var(--rotation, 0deg) - 2deg));
  }
}

/* Hero Section Animations */
@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeInScale {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes heroTextStagger {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroPillFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mockupFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(20px) rotate(var(--rotation, 0deg));
  }
  100% {
    opacity: 0.6;
    transform: scale(1) translateY(0) rotate(var(--rotation, 0deg));
  }
}


/* Hide mockups on smaller screens */
@media (max-width: 1280px) {
  .hero-floating-mockups {
    display: none;
  }
}

/* Old minimal hero styles - removed */

/* ===== LOKI-STYLE NAVBAR (Transparent - Sticky) ===== */
.fastshot-navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.fastshot-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.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: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0;
  object-fit: contain;
  transform: scale(0.6);
  animation: logoFadeInExpand 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.logo-text {
  font-size: 1rem;
  font-family: var(--font-cursive);
  font-weight: 600;
  font-style: italic;
  color: #0f172a;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: scale(0.8);
  animation: logoFadeInExpand 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

@keyframes logoFadeInExpand {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .logo-img,
  .logo-text,
  .fastshot-badge,
  .fastshot-headline,
  .fastshot-headline .italic-text,
  .fastshot-input-container,
  .fastshot-pills,
  .fastshot-pill,
  .floating-mockup {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.navbar-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  padding-right: 2rem;
}

.nav-btn-text {
  color: #64748b;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.875rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  position: relative;
}

.nav-btn-text:hover {
  color: #1e293b;
  background: rgba(30, 64, 175, 0.06);
  transform: translateY(-1px);
}

.nav-btn-primary {
  background: #1e40af;
  color: #ffffff;
  padding: 0.5rem 1.125rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  border: none;
  box-shadow: none;
  letter-spacing: -0.01em;
}

.nav-btn-primary:hover {
  background: #2563eb;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
  transform: translateY(-2px);
}

.navbar-separator {
  width: 1px;
  height: 18px;
  background: rgba(148, 163, 184, 0.25);
  margin: 0 0.375rem;
}

.nav-btn-community {
  color: #2563eb;
  font-weight: 500;
}

/* ===== LOKI-STYLE HERO SECTION (Professional & Spacious) ===== */
.fastshot-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 1.5rem;
  position: relative;
  z-index: 10;
  width: 100%;
  flex: 0 1 auto;
  min-height: 70vh;
  height: auto;
  overflow: visible;
}

.fastshot-hero-container {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

/* Badge - Professional & Refined */
.fastshot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(30, 64, 175, 0.06);
  border: 1px solid rgba(30, 64, 175, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: #1e40af;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.06);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.fastshot-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
  background: rgba(30, 64, 175, 0.08);
}

.beta-notice {
  font-size: 0.875rem;
  font-weight: 500;
  color: #dc2626;
  background: rgba(239, 68, 68, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
}

/* Elegant Cursive Headline - Loki.Build Style */
.fastshot-headline {
  font-family: var(--font-cursive);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
  color: #0f172a;
  font-style: normal;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.fastshot-headline .italic-text {
  font-style: italic;
  font-weight: 600;
  color: #1e40af;
  position: relative;
}

/* Removed gradientShift animation for clean, professional look */

/* Input Container - Clean & Professional */
.fastshot-input-container {
  position: relative;
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 2px 8px rgba(15, 23, 42, 0.04);
  padding: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: heroFadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.fastshot-input-container:hover {
  box-shadow: 
    0 8px 32px rgba(30, 64, 175, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
  border-color: rgba(30, 64, 175, 0.3);
}

.fastshot-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #0f172a;
  outline: none;
  font-weight: 400;
}

.fastshot-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.fastshot-send-btn {
  background: #1e40af;
  border: none;
  border-radius: 11px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
  position: relative;
  overflow: hidden;
}

.fastshot-send-btn:hover {
  background: #2563eb;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.fastshot-send-btn:active {
  transform: translateY(0) scale(1);
}

/* Feature Pills - Refined & Professional */
.fastshot-pills {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: heroFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.fastshot-pill {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0.625rem 1.25rem;
  border-radius: 24px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  opacity: 0;
  transform: translateY(15px);
}

.fastshot-pill:nth-child(1) {
  animation: heroPillFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.fastshot-pill:nth-child(2) {
  animation: heroPillFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

.fastshot-pill:nth-child(3) {
  animation: heroPillFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

.fastshot-pill:hover {
  border-color: rgba(30, 64, 175, 0.3);
  color: #1e40af;
  background: rgba(30, 64, 175, 0.04);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
  transform: translateY(-2px);
}

/* ===== DASHBOARD PREVIEW SECTION ===== */
.dashboard-preview-section {
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.dashboard-preview-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dashboard-image-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(37, 99, 235, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.dashboard-image-wrapper:hover {
  box-shadow: 
    0 24px 72px rgba(37, 99, 235, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.dashboard-preview-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.trusted-by-section {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.trusted-by-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.trusted-by-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.trusted-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trusted-logo:hover {
  opacity: 1;
}

.trusted-logo-alumni {
  height: 48px;
}

.logo-separator {
  width: 1px;
  height: 24px;
  background: rgba(148, 163, 184, 0.3);
}

/* ===== TRUSTED STRIP (LANDING) ===== */
.trusted-strip-section {
  padding: 2.5rem 1.5rem 1.25rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.trusted-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  flex-wrap: wrap;
}

/* ===== WHAT IS LOCK IN SECTION ===== */
.what-is-lockin-section {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark Overlay - Full dark background */
.lockin-spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lockin-spotlight-overlay.is-active {
  opacity: 1;
}

.lockin-spotlight-overlay.is-fading {
  opacity: 0;
}

/* Dot Overlay - appears above dark overlay to show white dots */
.lockin-dot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: background-image 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.lockin-dot-overlay.is-visible {
  opacity: 1;
}

.what-is-lockin-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}


.what-is-lockin-title {
  font-family: var(--font-cursive);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  font-style: italic;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  transition: color 0.6s ease;
  line-height: 1.2;
  transform: none;
}

.lockin-spotlight-overlay.is-active ~ .what-is-lockin-container .what-is-lockin-title {
  color: #ffffff;
}

/* Fade out state */
.lockin-spotlight-overlay.is-fading {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.mission-text-graphic {
  display: none;
}

.question-mark-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  color: rgba(15, 23, 42, 0.85);
  opacity: 1;
}

.box-frame-svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: rgba(15, 23, 42, 0.85);
  opacity: 0;
  pointer-events: none;
  overflow: visible;
}

.question-curve,
.question-line,
.question-dot {
  opacity: 1;
}

.box-top,
.box-bottom,
.box-left,
.box-right {
  opacity: 0;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.mission-text {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 500;
  line-height: 1.7;
  color: transparent;
  margin: 0;
  text-align: center;
  letter-spacing: -0.01em;
  will-change: transform, color;
  position: relative;
  z-index: 1;
}

/* Word-by-word animation states */
.mission-text .word {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  color: rgba(15, 23, 42, 0.6);
  transform: translateY(5px);
}

.mission-text .word.is-highlighted {
  opacity: 1;
  color: #0f172a;
  transform: translateY(0);
  text-shadow: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              text-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When fading to black, transition highlighted words to black */
.what-is-lockin-section.fade-to-black .mission-text .word.is-highlighted {
  color: #0f172a;
  text-shadow: none;
}

.what-is-lockin-section.fade-to-black .mission-text em .word.is-highlighted {
  color: #1e40af;
  text-shadow: none;
}

.mission-text .word:not(.is-highlighted) {
  opacity: 0;
  color: transparent;
}

/* Light mode: Make text semi-transparent but visible when overlay is NOT active */
.lockin-spotlight-overlay:not(.is-active) ~ .what-is-lockin-container .mission-text .word:not(.is-highlighted) {
  opacity: 0;
  color: transparent;
}

/* When dark overlay is active, change base colors */
.lockin-spotlight-overlay.is-active ~ .what-is-lockin-container .mission-text {
  color: transparent; /* Hide original text, show only word spans */
}

.lockin-spotlight-overlay.is-active ~ .what-is-lockin-container .mission-text .word:not(.is-highlighted) {
  color: #ffffff;
  opacity: 0.3;
}

/* Blue highlights while the dark overlay is active */
.lockin-spotlight-overlay.is-active ~ .what-is-lockin-container .mission-text .word.is-highlighted {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

/* Ensure emphasized words still read as highlights in dark mode */
.lockin-spotlight-overlay.is-active ~ .what-is-lockin-container .mission-text em .word.is-highlighted {
  color: var(--lockin-primary-light);
  text-shadow: 0 0 24px rgba(59, 130, 246, 0.55);
}
/* When fading to black, restore normal text visibility */
.what-is-lockin-section.fade-to-black .mission-text {
  color: #ffffff;
}

/* Preserve italic styling for em tags */
.mission-text em .word {
  font-style: italic;
  font-weight: 600;
  color: inherit;
  opacity: inherit;
}

/* Text visibility is now handled by the graphic overlay and JavaScript animation */

.what-is-lockin-section.lockin-complete .mission-text .word,
.what-is-lockin-section.lockin-complete .mission-text em .word {
  opacity: 1;
  color: #0f172a;
  transform: none;
  text-shadow: none;
}

.what-is-lockin-section:not(.lockin-animating):not(.lockin-complete) .mission-text .word,
.what-is-lockin-section:not(.lockin-animating):not(.lockin-complete) .mission-text em .word {
  opacity: 0;
  color: transparent;
  transform: translateY(5px);
  text-shadow: none;
}

.mission-text em .word.is-highlighted {
  color: #0f172a;
  opacity: 1;
  text-shadow: none;
  transition: color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              text-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-how em {
  font-style: italic;
  color: #1e40af;
  font-weight: 500;
  background: linear-gradient(120deg, rgba(30, 64, 175, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
  padding: 0 2px;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .mission-content {
    gap: 2rem;
  }
  
  .what-is-lockin-section {
    padding: 4rem 1.5rem;
    height: auto;
    min-height: 70vh;
  }
  
  .mission-text {
    font-size: 1.25rem;
  }
}

/* Override default spacing when used standalone (not under the old preview section) */
.trusted-strip-section .trusted-by-section {
  margin-top: 0;
}

/* ===== FEATURES TABBED SECTION (Loki Style) ===== */
.features-tabbed-section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: transparent;
}

.features-tabbed-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section-title {
  font-family: var(--font-cursive);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #0f172a;
}

/* Feature Tabs */
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}

.feature-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.2rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-family: var(--font-body);
  min-width: 120px;
}

.feature-tab:hover {
  border-color: rgba(15, 23, 42, 0.6);
}

.feature-tab.active {
  border-color: #0f172a;
}

.tab-number {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.feature-tab.active .tab-number {
  color: #0f172a;
}

.tab-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  transition: color 0.3s ease;
  text-align: center;
}

.feature-tab.active .tab-label {
  color: #0f172a;
}

/* Feature Content */
.feature-content-wrapper {
  position: relative;
  min-height: 460px;
}

.feature-content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-24px);
  transition: opacity 0.4s ease, transform 0.5s ease;
  --feature-tilt: -1.2deg;
}

.feature-content[data-side="right"] {
  transform: translateX(24px);
  --feature-tilt: 1.2deg;
}

.feature-content.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.feature-content.reverse .feature-content-text {
  order: 2;
}

.feature-content.reverse .feature-content-image {
  order: 1;
}

.feature-content.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.feature-content-text {
  max-width: 500px;
  position: relative;
}

.feature-content-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 1.6rem 1.75rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 1;
}

.feature-content-title {
  font-family: var(--font-cursive);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 500;
  font-style: italic;
  color: #0f172a;
  margin: 0 0 0.9rem 0;
  line-height: 1.2;
}

.feature-content-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 0.75rem 0;
}

.feature-content-prompt {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: #0f172a;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
}

.feature-content-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  background: #0f172a;
  color: #ffffff;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.feature-cta:hover {
  transform: translateY(-1px);
  background: #1e293b;
}

.feature-cta.secondary {
  background: transparent;
  color: #0f172a;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.feature-cta.secondary:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.3);
}

.feature-content-image {
  position: relative;
}

.feature-content-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08),
    0 8px 20px rgba(15, 23, 42, 0.06);
  transform: rotate(var(--feature-tilt));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-content-image img:hover {
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.12),
    0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px) rotate(var(--feature-tilt));
}

.feature-connector {
  position: absolute;
  width: 200px;
  height: 120px;
  right: -110px;
  top: -5px;
  transform: none;
  color: #2563eb;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.feature-content.reverse .feature-connector {
  right: auto;
  left: -110px;
  transform: scaleX(-1);
}

/* Responsive - Features Section */
@media (max-width: 768px) {
  .features-tabbed-section {
    padding: 3rem 1rem;
  }
  
  .feature-tabs {
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .feature-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .feature-tab {
    min-width: 110px;
    padding: 0.35rem 0.2rem;
    flex: 0 0 auto;
  }
  
  .tab-label {
    font-size: 0.8125rem;
  }
  
  .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .feature-content:not(.active) {
    display: none;
  }

  .feature-content.reverse .feature-content-text {
    order: 1;
  }

  .feature-content.reverse .feature-content-image {
    order: 2;
  }
  
  .feature-content-wrapper {
    min-height: auto;
  }
  
  .feature-content-title {
    font-size: 1.5rem;
  }
  
  .feature-content-description {
    font-size: 1rem;
  }

  .feature-connector {
    display: none;
  }

  .feature-content-image img {
    transform: none;
  }
}

@media (max-width: 768px) {
  .trusted-strip-section {
    padding: 2rem 1rem 1rem;
  }

  .trusted-strip-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .trusted-by-section {
    gap: 1rem;
  }
  
  .trusted-by-text {
    font-size: 0.8125rem;
  }
  
  .trusted-by-logos {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .trusted-logo {
    height: 24px;
  }
  
  .trusted-logo-alumni {
    height: 32px;
  }
  
  .logo-separator {
    height: 20px;
  }
  
  .navbar-separator {
    display: none;
  }
  
  .nav-btn-community {
    display: none;
  }
  
  .pricing-section {
    padding: 3rem 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: transparent;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* COMING SOON OVERLAY - Remove this entire block to remove the blur */
.pricing-coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.pricing-coming-soon-content {
  text-align: center;
}

.pricing-coming-soon-text {
  font-family: var(--font-cursive);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  font-style: italic;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.pricing-title {
  font-family: var(--font-cursive);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.pricing-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: #64748b;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(30, 64, 175, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: #1e40af;
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e40af;
  color: #ffffff;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
}

.price-period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-description {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  color: #475569;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.875rem 1.5rem;
  background: #1e40af;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.pricing-cta:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
}

.pricing-card.featured .pricing-cta {
  background: #1e40af;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
}

/* ===== FAQs SECTION (Cleaner Design) ===== */
.faqs-section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #ffffff;
}

.faqs-container {
  max-width: 800px;
  margin: 0 auto;
}

.faqs-title {
  font-family: var(--font-cursive);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.faqs-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  color: #64748b;
  margin-bottom: 3rem;
  font-weight: 400;
}

.faqs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: transparent;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #0f172a;
}

.faq-item.active .faq-question {
  color: #1e40af;
}

.faq-question:hover {
  color: #1e40af;
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #94a3b8;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #2563eb;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  font-weight: 400;
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 3rem 1rem;
  }
  
  .faqs-subtitle {
    margin-bottom: 2rem;
  }
  
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
  }
}

/* ===== HOW IT WORKS SECTION - PROFESSIONAL ROADMAP ===== */
.how-it-works-section {
  padding: 1.5rem 2rem 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: transparent;
}

.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: 26px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: rgba(226, 232, 240, 0.5);
  border-radius: 2px;
  z-index: 1;
}

.roadmap-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #1e40af;
  border-radius: 2px;
  transition: width 0s;
  box-shadow: 0 0 8px rgba(30, 64, 175, 0.4);
}

.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: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #cbd5e1;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

/* Filled state when progress bar reaches the number */
.step-card.active .step-number {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

/* Step content - Elegant Typography */
.step-title {
  font-size: 1.125rem;
  font-family: var(--font-cursive);
  font-weight: 500;
  font-style: italic;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  transition: all 0.6s ease;
}

.step-card.active .step-title {
  color: #1e40af;
  font-weight: 600;
}

.step-description {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  font-weight: 400;
  max-width: 220px;
  transition: color 0.6s ease;
}

.step-card.active .step-description {
  color: #475569;
}

/* 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%;
  }
}

/* ===== LOKI-STYLE FOOTER (Clean & Professional) ===== */
.fastshot-footer {
  padding: 1.25rem 2rem;
  background: transparent;
  margin-top: auto;
  flex-shrink: 0;
  min-height: 60px;
  height: auto;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  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;
}

/* No sequential fade-in animations - elements appear immediately */

.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;
  }
}

@media (max-width: 540px) {
  .fastshot-input-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .fastshot-input {
    padding: 0.875rem 1rem;
  }

  .fastshot-send-btn {
    width: 100%;
    height: 46px;
  }
}

/* ===== 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.5rem 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;
  }
}
