/* nova.css - Modern, vibrant light UI design system */
:root {
  --bg-base: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: rgba(255, 255, 255, 0.8);
  --text-main: #0f172a;
  --text-muted: #64748b;

  --accent-primary: #3b82f6;
  --accent-primary-hover: #2563eb;
  --accent-secondary: #8b5cf6;
  --accent-success: #10b981;

  --gradient-brand: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --gradient-glow: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3) 0%,
    rgba(139, 92, 246, 0.3) 100%
  );

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent-primary);
}

.text-secondary {
  color: var(--accent-secondary);
}

.text-success {
  color: var(--accent-success);
}

/* Buttons */
.btn-primary,
.btn-primary-small,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent-primary);
  color: white;
  padding: 10px 24px;
  font-size: 1rem;
  box-shadow: none;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--accent-primary-hover);
  transform: none;
  box-shadow: none;
}

.btn-primary-small {
  background: var(--accent-primary);
  color: white;
  padding: 8px 16px;
  font-size: 0.9rem;
  border: 2px solid transparent;
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  padding: 10px 24px;
  font-size: 1rem;
  border: 2px solid transparent;
  font-weight: 600;
}

.btn-secondary:hover {
  background: transparent;
  text-decoration: underline;
}

/* Glassmorphism Navbar */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(248, 250, 252);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-brand);
  border-radius: 10px;
  color: white;
  font-size: 0.9em;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.08) 0%, rgba(248, 250, 252, 0) 70%), 
              url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239ba9b4" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-base) 0%, transparent 100%);
    pointer-events: none;
}

.ambient-glow {
  display: none;
}

/* Removed glow for solid look */

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: #e5f2fb;
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  flex: 1;
  position: relative;
}

.glass-panel {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow:
    0 13px 27px -5px rgba(50, 50, 93, 0.25),
    0 8px 16px -8px rgba(0, 0, 0, 0.3);
}

.glass-panel img:not(.hero-slide) {
  width: 100%;
  display: block;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
  background: #000;
  border-radius: 12px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* changed from cover to contain so the app UI is fully visible */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1 !important;
}

/* Platform Logos */
.trusted-section {
  padding: 2rem 0;
  background: #ffffff;
}

.text-center {
  text-align: center;
}

.trusted-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.platform-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  align-items: center;
}

.platform-logos span {
  font-weight: 600;
  font-size: 1.1rem;
}

.platform-logos img {
  height: 45px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: var(--transition-fast);
}

.platform-logos img:hover {
  transform: scale(1.05);
}

/* Features grid */
.features-section {
  padding: 20px 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 2rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.9);
}

.bento-card:hover::before {
    opacity: 1;
}

.card-large {
  grid-row: span 2;
}

.card-wide {
  grid-column: span 2;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    font-size: 1.8rem;
    color: var(--accent-primary);
}

.icon-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.large-icon {
  width: auto;
  height: auto;
  font-size: 4rem;
  color: #e5f2fb;
  background: transparent;
  box-shadow: none;
}

.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.bento-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Clean Borders (Overridden) */
.gradient-border::before {
  display: none;
}

/* Dark Theme Bento Card (Activate Your Device) */
.card-dark {
  background: #11141a !important; /* Deep dark blue/black */
  color: #ffffff;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.flags-box {
  background: rgba(30, 48, 40, 0.8);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: max-content;
}

.flags-box .flag-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #2ECC71; /* Bright green text */
  font-weight: 600;
  font-size: 1rem;
}

.flags-box .flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.card-dark .desc-text {
  color: #8b9bb4; /* Light grayish blue text */
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.info-box {
  background: #1a2332;
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #3498db;
}

.info-box .info-icon {
  width: 24px;
  height: 24px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.info-box p {
  color: #ffffff !important;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.activation-features {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.activation-features .act-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b9bb4;
  font-size: 0.85rem;
  line-height: 1.2;
}

.activation-features .act-feature i {
  color: #f1c40f; /* Yellow icon */
  font-size: 1.2rem;
}

/* Footer */
.modern-footer {
  padding: 3rem 0;
  background: #f2f2f2;
  color: #616161;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links h4 {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.2rem;
}

.social-links a:hover {
  color: var(--accent-primary);
}

/* Animations Removed */

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .card-large,
  .card-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .card-wide .card-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }
}

/* Footer language control */
.lang-flags,.lang-switcher{display:none!important;}