/* 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: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: hsl(var(--fg)); background: #0a0805 !important; min-height: 100vh; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* 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: #0a0805 !important;
  background-image: none !important;
  pointer-events: none;
  z-index: 1;
}

.center { width: 100%; max-width: none; text-align: left; padding: 120px 40px 40px 40px; margin: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; position: relative; z-index: 5; color: white !important; 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 Left */
.logo-container {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 1000;
}

.jarvis-logo {
  width: 32px;
  height: 32px;
  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);
}

/* Header Buttons Container - Top Right */
.header-buttons {
  position: absolute;
  top: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}

/* Header Sign In Button */
.header-signin-btn {
  padding: 6px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.header-signin-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Header Download Button - Top Right */
.header-download-btn {
  padding: 6px 14px;
  border-radius: 16px;
  background: white;
  color: black;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.header-download-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.header-download-mobile {
  display: none;
}

.header-download-desktop {
  display: inline;
}

/* Hero Download Button */
.hero-download-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 50px;
  background: white;
  color: black;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.user-count-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.hero-download-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.download-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-download-mobile {
  display: none !important;
}

.hero-download-desktop {
  display: inline !important;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  line-height: 1;
  height: fit-content;
}

/* 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;
}

/* Download button loading state */
.download-btn.downloading {
  opacity: 0.8;
  cursor: wait;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.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; }

/* Try Cursor Section */
.try-cursor-section {
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  background: transparent;
}

.try-cursor-title {
  color: white;
  font-size: 56px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.try-cursor-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.try-cursor-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Get Jarvis CTA Section */
.get-jarvis-section {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  background: transparent;
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0 auto;
}

.get-jarvis-title {
  color: white;
  font-size: 56px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.get-jarvis-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.get-jarvis-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.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;
}

.contact-support {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
  margin: 10px auto 0 auto;
  padding: 0 16px 60px 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 10;
}

.contact-support:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

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

.lockdown-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: fit-content;
  transition: all 0.3s ease;
}

.lockdown-tag:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

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

.tagline {
  color: white !important;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  margin: 0 0 20px 0;
  line-height: 1.15;
  display: block !important;
  max-width: 700px;
  text-align: left;
  letter-spacing: -0.02em;
  margin-left: 0;
}

.canvas-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

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

.subtitle-tagline {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  margin: 0 0 32px 0;
  line-height: 1.5;
  display: block !important;
  max-width: 600px;
  text-align: left;
}

.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: calc(100vw - 80px);
  max-width: none;
  height: auto;
  border-radius: 8px;
  margin: 0 0 80px 0;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
  padding: 80px 40px 0 40px;
  max-width: 1400px;
  margin: 0 auto 80px auto;
}

.features-title {
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 40px 0;
  text-align: center;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.feature-box-new {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.feature-box-new:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-title-new {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-text-new {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

/* 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: 1024px) {
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-section {
    padding: 0 40px;
  }
}

@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-section {
    padding: 0 24px;
  }
  
  .testimonials-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-name {
    font-size: 14px;
  }
  
  .testimonial-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }
  
  .testimonial-school {
    font-size: 12px;
  }
  
  .pricing-section {
    margin: 60px auto 60px auto;
    padding: 0 24px;
  }
  
  .pricing-title {
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pricing-card {
    padding: 24px 20px;
  }
  
  .pricing-tier {
    font-size: 20px;
    font-weight: 600;
  }
  
  .pricing-price {
    font-size: 28px;
  }
  
  .price-amount {
    font-size: 28px;
  }
  
  .price-period {
    font-size: 16px;
  }
  
  .pricing-tagline {
    font-size: 14px;
  }
  
  .pricing-feature {
    font-size: 13px;
  }
  
  .pricing-button {
    font-size: 14px;
    padding: 12px;
    border-radius: 10px;
  }
}

/* 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: 1400px;
  margin: 120px auto 100px auto;
  padding: 0 40px;
  position: relative;
  z-index: 100;
}

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

.testimonials-carousel {
  width: 100%;
  overflow: visible;
  position: relative;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  min-height: 280px;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 auto 0;
  flex: 1;
  font-weight: 300;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

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

.testimonial-school {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 300;
  margin: 0;
}

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

.pricing-title {
  color: white;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 40px 0;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

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

.pricing-price {
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 24px 0;
  line-height: 1;
}

.price-amount {
  font-size: 32px;
  color: white;
}

.price-period {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 28px 0;
  padding: 0;
  border: none;
}

.pricing-everything {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 16px 0;
}

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

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

.feature-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: white;
  margin-top: 2px;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  margin-top: auto;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.pricing-button-pro {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

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

/* Mobile Optimization */
@media (max-width: 480px) {
  .center {
    padding: 100px 24px 40px 24px;
    text-align: left;
    align-items: flex-start;
  }
  
  .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;
    left: 24px;
  }
  
  .jarvis-logo {
    width: 28px;
    height: 28px;
  }
  
  .header-buttons {
    right: 20px;
    gap: 8px;
  }

  .header-signin-btn {
    padding: 5px 12px;
    font-size: 12px;
  }

  .header-download-btn {
    display: none;
  }
  
  .lockdown-tag {
    position: absolute;
    top: 15px;
    right: 24px;
    left: auto;
    transform: none;
    margin: 0;
  }
  
  .hero-download-mobile {
    display: inline !important;
  }
  
  .hero-download-desktop {
    display: none !important;
  }
  
  .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: 5px 12px;
    font-size: 10px;
    margin: 0 0 20px 0;
    gap: 5px;
  }

  .lockdown-shield-icon {
    width: 11px;
    height: 11px;
  }
  
  .tagline {
    font-size: clamp(22px, 6vw, 34px);
    margin-bottom: 16px;
    text-align: left;
    gap: 10px;
  }
  
  .canvas-icon {
    width: 24px;
    height: 24px;
  }
  
  .subtitle-tagline {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 24px;
    text-align: left;
  }
  
  .hero-download-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .hero-download-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .hero-download-mobile {
    display: inline !important;
  }
  
  .hero-download-desktop {
    display: none !important;
  }
  
  .user-count-text {
    font-size: 13px;
  }
  
  .download-arrow {
    width: 14px;
    height: 14px;
  }
  
  .user-count {
    font-size: 13px;
    margin: 12px 0 20px 0;
  }
  
  .pricing-section {
    margin: 40px auto 40px auto;
    padding: 0 20px;
  }
  
  .pricing-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .pricing-container {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  
  .pricing-card {
    padding: 24px 20px;
    max-width: 100%;
  }
  
  .demo-video {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .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: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
  
  .try-cursor-section {
    padding: 80px 20px;
    gap: 24px;
  }
  
  .try-cursor-title {
    font-size: 36px;
  }
  
  .try-cursor-btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  .get-jarvis-section {
    padding: 40px 20px;
    gap: 24px;
  }
  
  .get-jarvis-title {
    font-size: 36px;
  }
  
  .get-jarvis-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .micro {
    font-size: 11px;
    padding: 20px 16px;
  }
  
  .made-by {
    font-size: 10px;
    padding: 0 16px 40px 16px;
  }

  .get-jarvis-section {
    padding: 30px 16px;
    gap: 16px;
  }

  .get-jarvis-title {
    font-size: 28px;
  }

  .get-jarvis-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

@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: 100%;
    max-width: 100%;
    margin: 0 auto 40px auto;
    display: block;
  }

  .features-section {
    padding: 40px 20px;
    margin: 0 auto;
  }

  .features-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .features-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature-box-new {
    padding: 20px;
    min-height: 140px;
  }

  .feature-title-new {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .feature-text-new {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .demo-video {
    margin-bottom: 30px;
  }

  .features-section {
    padding: 30px 16px;
    margin: 0 auto;
  }

  .features-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .features-grid-new {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-box-new {
    padding: 16px;
    min-height: 120px;
  }

  .feature-title-new {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .feature-text-new {
    font-size: 13px;
    text-align: left;
    line-height: 1.5;
  }

  .pricing-section {
    margin: 30px 0 60px 0;
    padding: 0 16px;
  }

  .pricing-title {
    margin-bottom: 20px;
  }

  .pricing-container {
    gap: 12px;
  }

  .pricing-card {
    padding: 20px;
  }
}

/* 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: 480px) {
  .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;
  }
}

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

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

.email-modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 400px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.email-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.email-modal-close:hover {
  color: white;
}

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

.email-modal-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0 0 24px 0;
  text-align: center;
}

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

.email-modal-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.2s ease;
}

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

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

.email-modal-submit {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: white;
  color: black;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-modal-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.email-modal-success {
  display: none;
  color: #6de4a6;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  font-weight: 500;
}


