/* Landing navbar styled to match OpenDossier palette */
.od-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 35, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 50;
}
.od-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 64px;
}

.od-brand {
  display: flex;
  align-items: center;
  color: #00ff88;
  font-weight: 700;
  font-size: 1.75rem;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.od-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0;
  align-items: center;
}
.od-menu li { display: flex; align-items: center; }
.od-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.od-menu a:hover {
  color: #00ff88;
}
.od-auth {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.od-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.od-btn:hover {
  background: rgba(0, 255, 136, 0.2);
  border-color: #00ff88;
  color: #00ff88;
}
.od-btn.od-btn-outline {
  background: transparent;
}

/* Footer styled like header */
.od-footer {
  background: rgba(10, 10, 35, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}
.od-footer .od-nav {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.od-contact {
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.od-contact-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.od-contact-link {
  color: #00ff88;
  text-decoration: none;
  font-weight: 600;
}
.od-contact-link:hover {
  text-decoration: underline;
}
.od-contact-sub {
  color: #cccccc;
  font-size: 0.95rem;
}

/* Scoped OpenDossier styles based on opendossier-site/styles.css */
.od-theme * {
  box-sizing: border-box;
}

.od-theme {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3d 100%);
  color: #ffffff;
  line-height: 1.6;
}

.od-theme .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */

.od-theme .hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3d 50%, #2a2a5d 100%);
  
}

.od-theme .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.od-theme .hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.od-theme .hero-subtitle {
  font-size: 1.5rem;
  color: #b8b8ff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.od-theme .hero-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.od-theme .cta-button {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #0a0a23;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.od-theme .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* Hero Screenshot */
.od-theme .hero-screenshot {
  width: 700px;
  height: 470px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  background: transparent;
  max-width: none;
}
.od-theme .hero-screenshot:hover {
  filter: drop-shadow(0 10px 20px rgba(0, 255, 136, 0.2)) drop-shadow(0 0 15px rgba(0, 255, 136, 0.15));
}

/* Products Section */
.od-theme .products {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a3d 0%, #0a0a23 100%);
}

.od-theme .section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #b8b8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.od-theme .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.od-theme .product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.od-theme .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.3);
}
.od-theme .product-card.featured {
  border: 2px solid #00ff88;
  background: rgba(0, 255, 136, 0.1);
}
.od-theme .featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #0a0a23;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.od-theme .product-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.od-theme .product-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.od-theme .product-price {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.25rem 0 0.75rem;
}
.od-theme .product-description {
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.od-theme .product-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  padding: 0;
}
.od-theme .product-features li {
  color: #b8b8ff;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.od-theme .product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: bold;
}
.od-theme .product-button {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-top: auto;
}
.od-theme .product-button:hover {
  background: rgba(0, 255, 136, 0.2);
  border-color: #00ff88;
  color: #00ff88;
}
.od-theme .featured .product-button {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #0a0a23;
  border: none;
}
.od-theme .featured .product-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* About Section */
.od-theme .about {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3d 100%);
}
.od-theme .about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.od-theme .about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #b8b8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.od-theme .about p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.od-theme .about-list {
  list-style: none;
  margin: 1.25rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem 1.25rem;
  max-width: 900px;
}
.od-theme .about-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}
.od-theme .about-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.35);
  box-shadow: 0 6px 18px rgba(0, 255, 136, 0.12);
  flex: 0 0 auto;
  color: #00ff88;
}
.od-theme .about-icon svg {
  width: 20px;
  height: 20px;
}
.od-theme .about-item h4 {
  margin: 0 0 0.25rem 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}
.od-theme .about-item p {
  margin: 0;
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.od-theme .about-cta {
  text-align: center;
  margin-top: 2rem;
}
.od-theme .about-cta h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Features Section */
.od-theme .features {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a1a3d 0%, #0a0a23 100%);
}
.od-theme .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.od-theme .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.od-theme .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.25);
}
.od-theme .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.35);
  box-shadow: 0 6px 18px rgba(0, 255, 136, 0.12);
  margin-bottom: 0.85rem;
}
.od-theme .feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00ff88;
}
.od-theme .feature-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.od-theme .feature-card p {
  color: #cccccc;
  line-height: 1.65;
}
.od-theme .section-subtitle {
  text-align: center;
  color: #b8b8ff;
  font-size: 1.125rem;
  max-width: 900px;
  margin: 0.75rem auto 0;
}

.od-theme .features-cta {
  text-align: center;
  margin-top: 2rem;
}

li {color: #cccccc;}


/* Responsive */
@media (max-width: 768px) {
  .od-theme .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .od-theme .hero-text h1 {
    font-size: 2.5rem;
  }
  .od-theme .hero-subtitle {
    font-size: 1.2rem;
  }
  .od-theme .section-title {
    font-size: 2rem;
  }
  .od-theme .products-grid {
    grid-template-columns: 1fr;
  }
  .od-theme .hero-screenshot {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .od-theme .hero {
    padding: 100px 0 60px;
  }
  .od-theme .hero-text h1 {
    font-size: 2rem;
  }
  .od-theme .product-card {
    padding: 2rem 1.5rem;
  }
  .od-theme .hero-screenshot {
    width: 100%;
    max-width: 320px;
    height: 200px;
  }
  .od-theme .container {
    padding: 0 15px;
  }
}

/* Scoped landing styles adapted from opendossier-site/styles.css */
.od-landing {
  --od-text: #ffffff;
  --od-accent: #00ff88;
  --od-accent-2: #00d4ff;
  --od-bg-1: #0a0a23;
  --od-bg-2: #1a1a3d;
  --od-bg-3: #2a2a5d;
  color: var(--od-text);
  background: linear-gradient(135deg, var(--od-bg-1) 0%, var(--od-bg-2) 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.od-landing * { box-sizing: border-box; }
.od-landing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.od-landing .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--od-bg-1) 0%, var(--od-bg-2) 50%, var(--od-bg-3) 100%);
}
.od-landing .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.od-landing .hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--od-accent), var(--od-accent-2));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.od-landing .hero-subtitle {
  font-size: 1.5rem;
  color: #b8b8ff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.od-landing .hero-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.od-landing .cta-button {
  background: linear-gradient(135deg, var(--od-accent), var(--od-accent-2));
  color: var(--od-bg-1);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.od-landing .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}
.od-landing .hero-screenshot {
  width: 700px;
  height: 470px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  background: transparent;
}
.od-landing .hero-screenshot:hover {
  filter: drop-shadow(0 10px 20px rgba(0, 255, 136, 0.2)) drop-shadow(0 0 15px rgba(0, 255, 136, 0.15));
}

/* Products */
.od-landing .products {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--od-bg-2) 0%, var(--od-bg-1) 100%);
}
.od-landing .section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff, #b8b8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.od-landing .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.od-landing .product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.od-landing .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
  border-color: rgba(0, 255, 136, 0.3);
}
.od-landing .product-card.featured {
  border: 2px solid var(--od-accent);
  background: rgba(0, 255, 136, 0.1);
}
.od-landing .featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--od-accent), var(--od-accent-2));
  color: var(--od-bg-1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.od-landing .product-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.od-landing .product-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}
.od-landing .product-description {
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.od-landing .product-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
  padding: 0;
}
.od-landing .product-features li {
  color: #b8b8ff;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.od-landing .product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--od-accent);
  font-weight: bold;
}
.od-landing .product-button {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-top: auto;
}
.od-landing .product-button:hover {
  background: rgba(0, 255, 136, 0.2);
  border-color: var(--od-accent);
  color: var(--od-accent);
}
.od-landing .featured .product-button {
  background: linear-gradient(135deg, var(--od-accent), var(--od-accent-2));
  color: var(--od-bg-1);
  border: none;
}
.od-landing .featured .product-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* About */
.od-landing .about {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--od-bg-1) 0%, var(--od-bg-2) 100%);
}
.od-landing .about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.od-landing .about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, #b8b8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.od-landing .about p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Video */
.od-landing .video-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--od-bg-1) 0%, var(--od-bg-2) 100%);
}
.od-landing .video-card {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.od-landing .video-embed {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .od-landing .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .od-landing .hero-text h1 { font-size: 2.5rem; }
  .od-landing .hero-subtitle { font-size: 1.2rem; }
  .od-landing .section-title { font-size: 2rem; }
  .od-landing .products-grid { grid-template-columns: 1fr; }
  .od-landing .hero-screenshot {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }
}
@media (max-width: 480px) {
  .od-landing .hero { padding: 100px 0 60px; }
  .od-landing .hero-text h1 { font-size: 2rem; }
  .od-landing .product-card { padding: 2rem 1.5rem; }
  .od-landing .hero-screenshot {
    width: 100%;
    max-width: 320px;
    height: 200px;
  }
  .od-landing .container { padding: 0 15px; }
}


