/* Base (minimal) */
:root { --bg: 0 0% 0%; --fg: 0 0% 100%; --muted: 0 0% 100% / 0.65; }
* { box-sizing: border-box; }
html, body { width: 100%; overflow-x: hidden; }
body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji'; color: hsl(var(--fg)); background: #000000 !important; min-height: 100vh; }

/* Disable radial glows */
.bg::before, .bg::after { display: none; }

/* Hide background video */
.bg-video { display: none; }

/* Solid Black Background */
.dot-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000 !important;
  background-image: none !important;
  pointer-events: none;
  z-index: 1;
}

.center { width: 100%; max-width: 1200px; text-align: center; padding: 80px 16px 40px 16px; margin: 0 auto; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; position: relative; z-index: 5; color: white !important; padding-top: 20vh; overflow-x: hidden; }

/* Plus Button - Top Left */
.plus-button {
  color: white;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 1000;
}

.plus-button:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Logo Container - Top Middle */
.logo-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.jarvis-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-container a {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-container a:hover {
  transform: scale(1.05);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  transition: left 0.3s ease;
}

.sidebar.active {
  left: 0;
}

.sidebar-content {
  padding: 80px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-item {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.sidebar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Create the 6 dots using radial gradients */

.title { 
  font-size: clamp(16px, 3.5vw, 20px); 
  letter-spacing: -0.02em; 
  margin: 0; 
  font-weight: 400; 
  flex: 1;
  text-align: center;
  color: white;
}

/* Menu Dropdown */
.subtitle { color: hsl(var(--muted)); margin: 0 0 20px; font-size: clamp(16px, 2.2vw, 18px); }

/* Minimal form */
.signup { width: min(360px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; padding: 0; }
.signup input { 
  width: 100%; 
  padding: 12px 16px; 
  border-radius: 20px; 
  border: 1px solid rgba(51, 51, 51, 0.8); 
  background: rgba(17, 17, 17, 0.8); 
  backdrop-filter: blur(20px);
  color: #fff; 
  outline: none; 
  font-size: 14px; 
  transition: border-color 0.2s ease;
}
.signup input:focus {
  border-color: rgba(255, 255, 255, 0.2);
}
.signup input::placeholder { color: #888; }
.primary-cta { 
  padding: 12px 20px; 
  border-radius: 20px; 
  border: none; 
  background: #ffffff;
  color: #000; 
  font-weight: 600; 
  letter-spacing: 0.02em; 
  cursor: pointer; 
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
  display: inline-block;
}

.primary-cta:link,
.primary-cta:visited,
.primary-cta:hover,
.primary-cta:focus,
.primary-cta:active {
  text-decoration: none !important;
}

.primary-cta:hover {
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.download-btn {
  padding: 28px 56px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  border-radius: 28px;
  text-decoration: none !important;
  border-bottom: none !important;
  position: relative;
}

.download-btn:hover,
.download-btn:focus,
.download-btn:active {
  text-decoration: none !important;
  border-bottom: none !important;
}

.windows-download-btn {
  background: rgba(255, 255, 255, 0.9) !important;
  padding: 22px 44px !important;
  font-size: 18px !important;
}

.beta-tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #000000;
  color: white !important;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  text-transform: uppercase;
}

.apple-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}

.primary-cta:active { 
  opacity: 0.8;
}
.form-hint { grid-column: 1 / -1; color: hsl(var(--muted)); font-size: 12px; margin-top: -2px; }
.form-feedback { grid-column: 1 / -1; min-height: 20px; font-size: 14px; }

.micro { 
  color: hsl(var(--muted)); 
  font-size: 12px; 
  text-align: center; 
  margin: 40px auto 0 auto; 
  padding: 20px 16px;
}

.made-by {
  color: hsl(var(--muted));
  font-size: 11px;
  text-align: center;
  margin: 0 auto;
  padding: 0 16px 40px 16px;
}

.made-by a {
  color: hsl(var(--muted));
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.made-by a:hover {
  opacity: 1;
}

.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

.lockdown-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 15px;
  font-weight: 500;
  margin: 0 auto 32px auto;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  width: fit-content;
}

.lockdown-shield-icon {
  width: 16px;
  height: 16px;
  stroke: white;
  flex-shrink: 0;
}

.tagline {
  color: white !important;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 600;
  margin: 0 auto 32px auto;
  line-height: 1.2;
  display: block !important;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.tagline .line1,
.tagline .line2 {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.powered-by-tagline {
  color: white !important;
  font-size: 16px;
  margin: 0 0 40px 0;
  opacity: 0.7;
  display: block !important;
}

.ai-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 48px auto;
  width: 100%;
  max-width: 100%;
}

.ai-logo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.ai-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.ai-logo:hover {
  opacity: 1;
}

.price-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.jarvis-price {
  color: white !important;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 32px 0;
  text-align: center;
}

.price-highlight {
  color: #6de4a6;
  font-weight: 700;
  font-size: 24px;
}

.user-count {
  color: white !important;
  font-size: 14px;
  font-weight: 400;
  margin: 16px 0 24px 0;
  text-align: center;
}

.tags-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 48px 0;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.tag-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(100, 150, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tag-pill:hover {
  background: rgba(100, 150, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.shield-icon {
  width: 16px;
  height: 16px;
  stroke: white;
  flex-shrink: 0;
}

.lockdown-note {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px;
  font-weight: 500;
  margin: 40px 0 0 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkmark {
  color: #6de4a6;
  font-size: 20px;
  font-weight: bold;
}

.testimonials-carousel {
  width: min(700px, 90vw);
  margin: 48px auto 0;
  position: relative;
  min-height: 120px;
}

.testimonial {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease-in;
}

.testimonial.active {
  display: block;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.testimonial-author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

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

.powered-by {
  color: white;
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 0;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.demo-video {
  width: min(1600px, 98vw);
  height: auto;
  border-radius: 12px;
  margin: 48px auto 0 auto;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

/* Features Grid */
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 100;
}

.feature-box {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 100;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  visibility: visible !important;
  opacity: 1 !important;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

.feature-title {
  color: white;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.feature-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.lockdown-browsers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.browser-badge {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
  .section-divider {
    margin: 80px auto 60px auto;
    padding: 0 30px;
    gap: 24px;
  }
  
  .divider-text {
    font-size: 28px;
  }
  
  .features-section {
    padding: 0 40px;
    margin: 0 auto 80px auto;
  }
  
  .features-container {
    gap: 60px;
  }
  
  .feature-item {
    padding: 32px 0;
  }
  
  .feature-item-title {
    font-size: 26px;
    gap: 8px;
  }
  
  .feature-icon {
    width: 16px;
    height: 16px;
  }
  
  .feature-item-description {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .section-divider {
    margin: 60px auto 50px auto;
    gap: 20px;
  }
  
  .divider-text {
    font-size: 26px;
  }
  
  .features-container {
    flex-direction: column;
    gap: 60px;
  }
  
  .features-section {
    padding: 0 30px;
    margin: 0 auto 60px auto;
  }
  
  .feature-item {
    padding: 28px 0;
  }
}

@media (max-width: 640px) {
  .section-divider {
    margin: 50px auto 40px auto;
    padding: 0 20px;
    gap: 16px;
  }
  
  .divider-text {
    font-size: 24px;
  }
  
  .features-section {
    padding: 0 20px;
  }
  
  .feature-item {
    padding: 24px 0;
  }
  
  .feature-item-title {
    font-size: 24px;
    margin-bottom: 12px;
    gap: 8px;
  }
  
  .feature-icon {
    width: 16px;
    height: 16px;
  }
  
  .feature-item-description {
    font-size: 17px;
  }
  
  .testimonials-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .testimonial-card {
    flex: 0 0 340px;
    padding: 24px;
  }
  
  .testimonial-name {
    font-size: 18px;
  }
  
  .testimonial-text {
    font-size: 15px;
  }
  
  .pricing-section {
    margin: 80px auto 60px auto;
    padding: 0 20px;
  }
  
  .pricing-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .pricing-price {
    font-size: 48px;
  }
  
  .price-amount {
    font-size: 48px;
  }
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 80px auto;
  padding: 0 40px;
  position: relative;
  z-index: 100;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.divider-text {
  color: white;
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.features-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 100px auto;
  padding: 0 60px;
  position: relative;
  z-index: 100 !important;
}

.features-container {
  display: flex;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.features-video-side {
  flex: 1;
  min-width: 0;
}

.feature-showcase-video {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.features-list-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  text-align: left;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:first-child {
  padding-top: 0;
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-item-title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #6366f1;
}

.feature-item-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  max-width: 100%;
  margin: 120px 0 100px 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.testimonials-title {
  color: white;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 60px 0;
  padding: 0 20px;
}

.testimonials-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 32px;
  animation: scroll 25s linear infinite;
  width: fit-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card:nth-child(2) .testimonial-avatar,
.testimonial-card:nth-child(6) .testimonial-avatar {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-card:nth-child(3) .testimonial-avatar,
.testimonial-card:nth-child(7) .testimonial-avatar {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.testimonial-card:nth-child(4) .testimonial-avatar,
.testimonial-card:nth-child(8) .testimonial-avatar {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.testimonial-school {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 100px auto;
  padding: 0 40px;
  position: relative;
  z-index: 100;
}

.pricing-title {
  color: white;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 60px 0;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.pricing-card-pro {
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-tier {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.pricing-price {
  color: white;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1;
}

.price-amount {
  font-size: 56px;
}

.price-period {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pricing-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.02);
}

.pricing-button-pro {
  background: white;
  color: black;
}

.pricing-button-pro:hover {
  background: rgba(255, 255, 255, 0.9);
}

.pricing-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0 0 32px 0;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-everything {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.5;
}

.feature-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6366f1;
  margin-top: 2px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .center {
    padding: 20px 16px;
    width: min(90vw, 400px);
  }
  
  .jarvis-title-block {
    padding: 12px 18px;
    top: 30px;
    width: min(85vw, 380px);
  }
  
  .plus-button {
    font-size: 40px;
    top: 15px;
    left: 30px;
  }
  
  .logo-container {
    top: 15px;
  }
  
  .jarvis-logo {
    width: 50px;
    height: 50px;
  }
  
  .sidebar {
    width: 280px;
  }
  
  .sidebar-content {
    padding: 70px 20px 20px 20px;
  }
  
  .title {
    font-size: clamp(17px, 4vw, 19px);
  }
  
  .signup {
    width: 100%;
    gap: 8px;
  }
  
  .signup input {
    padding: 14px 18px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 22px;
  }
  
  .primary-cta {
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 22px;
  }
  
  .download-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .download-btn {
    padding: 20px 36px;
    font-size: 18px;
    gap: 10px;
    border-radius: 26px;
    width: 100%;
    max-width: 320px;
  }

  .beta-tag {
    font-size: 9px;
    padding: 3px 6px;
  }

  .apple-icon {
    width: 20px;
    height: 20px;
  }

  .modal-content {
    padding: 32px 24px;
    max-width: 95%;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-description {
    font-size: 14px;
  }

  .modal-input {
    padding: 14px 18px;
    font-size: 16px;
  }

  .modal-submit {
    padding: 14px 20px;
    font-size: 16px;
  }
  
  .ai-logos {
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .ai-logo {
    width: 30px;
    height: 30px;
  }
  
  .price-label {
    font-size: 9px;
  }
  
  .jarvis-price {
    font-size: 16px;
  }
  
  .price-highlight {
    font-size: 20px;
  }
  
  .lockdown-tag {
    padding: 8px 16px;
    font-size: 12px;
    margin: 0 0 20px 0;
    gap: 6px;
  }

  .lockdown-shield-icon {
    width: 14px;
    height: 14px;
  }

  .user-count {
    font-size: 13px;
    margin: 12px 0 20px 0;
  }

  .tags-container {
    gap: 8px;
    margin: 0 0 40px 0;
    padding: 0 16px;
  }

  .tag-pill {
    padding: 8px 16px;
    font-size: 12px;
    gap: 6px;
  }

  .shield-icon {
    width: 14px;
    height: 14px;
  }
  
  .lockdown-note {
    font-size: 16px;
    margin: 32px 0 0 0;
    gap: 6px;
  }
  
  .checkmark {
    font-size: 18px;
  }
  
  .testimonials-carousel {
    width: min(85vw, 600px);
    margin: 40px auto 0;
    min-height: 100px;
  }
  
  .testimonial-text {
    font-size: 15px;
  }
  
  .testimonial-author {
    font-size: 13px;
  }
  
  .powered-by {
    font-size: 14px;
    margin-top: 16px;
  }
  
  .demo-video {
    width: min(95vw, 800px);
    margin: 0;
  }
  
  .micro {
    font-size: 11px;
    padding: 20px 16px;
  }
  
  .made-by {
    font-size: 10px;
    padding: 0 16px 40px 16px;
  }
}

@media (max-width: 480px) {
  .jarvis-title-block {
    padding: 10px 16px;
    top: 20px;
    width: min(90vw, 320px);
  }
  
  .jarvis-title-block::before {
    font-size: 22px;
  }
  
  .jarvis-title-block::after {
    width: 10px;
    height: 15px;
  }
  
  .title {
    font-size: clamp(17px, 4vw, 19px);
  }
  
  .signup {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .signup input {
    padding: 15px 18px;
    font-size: 16px;
    border-radius: 24px;
  }
  
  .primary-cta {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border-radius: 24px;
  }
  
  .download-btn {
    padding: 22px 36px;
    font-size: 18px;
    gap: 8px;
    border-radius: 24px;
  }

  .apple-icon {
    width: 18px;
    height: 18px;
  }
  
  .demo-video {
    width: min(95vw, 700px);
    margin: 0;
  }
}

/* Features Page */
.features-page {
  padding-top: 150px;
  padding-bottom: 60px;
}

.page-title {
  color: white;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin: 0 0 48px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 0 0 60px 0;
  width: 100%;
  max-width: 900px;
}

.feature-card {
  background: rgba(128, 128, 128, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}

.back-home-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 20px;
  background: linear-gradient(45deg, #ffffff, #f8f8f8, #ffffff);
  background-size: 200% 200%;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.back-home-btn:hover {
  background: linear-gradient(45deg, #f8f8f8, #ffffff, #f8f8f8);
  animation: shimmer 2s ease-in-out infinite;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.modal-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.modal-title {
  color: white;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px 0;
  text-align: center;
}

.modal-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin: 0 0 32px 0;
  text-align: center;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.modal-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.modal-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.modal-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  margin: 0;
}

.modal-success {
  color: #6de4a6;
  font-size: 16px;
  text-align: center;
  margin: 0;
  padding: 20px;
}

@media (max-width: 768px) {
  .features-page {
    padding-top: 120px;
  }
  
  .page-title {
    font-size: clamp(32px, 8vw, 42px);
    margin-bottom: 32px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
}


