:root {
  --bg-dark: #0b0b0d;
  --bg-secondary: #141414;
  --accent: #2c53ff;
  /* primary red */
  --text-light: #ffffff;
  --text-light-case: #5e8ffa;
  --text-muted: #cccccc;
  --card-bg: #1a1a1a;
}






* {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}


body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background-color: var(--bg-secondary);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* keeps even spacing between links and button */
}

.navbar a {
  color: var(--text-light);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: var(--accent);
}

/* Navbar Logo */
.logo img {
  height: 50px;
  /* Adjust as needed */
  width: auto;
  display: block;
}

/* Keep logo aligned left */
.navbar .logo {
  display: flex;
  align-items: center;
}

.accent {
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0b0d 0%, #1a1a1a 50%, #2c53ff 100%);
  color: #fff;
  padding: 8rem 2rem;
}



.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  min-width: 320px;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  margin-right: 1rem;
}

/* Accent text */
.accent,
.section-title {
  background: linear-gradient(to right, #2c53ff, #3c5ff8);
  -webkit-background-clip: text;
  color: transparent;
}

/* Hero Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 300px;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  animation: float 6s ease-in-out infinite;
}

/* Subtle floating effect */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-image img {
    max-width: 400px;
  }
}


/* Buttons */
.btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background-color: var(--accent);
  color: #fff;
}

.btn.secondary {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  opacity: 0.9;
}

.btn.primary:hover,
.btn.secondary:hover {
  box-shadow: 0 0 10px rgba(44, 58, 255, 0.4);
  background-color: #3c4fff;
  color: #fff;
}

/* Sections */
.section {
  padding: 5rem 3rem;
  text-align: center;
}

.section.dark {
  background-color: var(--bg-secondary);
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  list-style: none;
}

.card,
.price-card {
  /* background: var(--card-bg); */
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
  list-style: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover,
.price-card:hover {
  transform: translateY(-5px);
}

.price-card.highlight {
  border: 2px solid var(--accent);
}

.price {
  font-size: 2rem;
  color: var(--accent);
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  cursor: pointer;
  flex: 1;
  min-height: 150px;
}

.price-card ul li {
  margin-bottom: 0.5rem;
}

/* Ensure all pricing buttons have consistent height and stay at bottom */
.price-card .btn {
  padding: 0.8rem 1.8rem;
  min-height: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: auto;
}
}

/* Contact Form */
form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#contactForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

input,
textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

input::placeholder,
textarea::placeholder {
  color: #888;
  opacity: 1;
}

.gradient-bg {
  background: linear-gradient(145deg, #1a1c28, #121420 70%, #3a2aff 100%);
  color: white;
}

/* Section titles */
.section-title {
  font-size: 2.4rem;
  background: linear-gradient(to right, #2c53ff, #3c5ff8);
  -webkit-background-clip: text;
  color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  grid-template-rows: repeat(2, auto);
  /* 2 rows */
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {

  /* Stack to 2 columns on tablets */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 600px) {

  /* Stack to 1 column on mobile */
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.feature-card:hover {
  box-shadow: 0 14px 30px rgba(44, 83, 255, 0.35);
  transform: translateY(-6px);
}



.icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* .feature-card:hover .icon {
  opacity: 1;
  color: linear-gradient(to right, #2c53ff, #3c5ff8);;
  transform: scale(1.05);
} */


.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.usecase-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.usecase-card:hover {
  transform: translateY(-4px);
}

.center {
  text-align: center;
  margin: 3rem 0;
}

/* Signup Page */
.signup-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.signup-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 44, 44, 0.2);

}

.signup-container h1 {
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signup-form input {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
}

.signup-form input:focus {
  border-color: var(--accent);
  outline: none;
}

.alt-link {
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.alt-link a {
  text-decoration: none;
  color: var(--accent);
}

.success-message {
  display: none;
  margin-top: 1rem;
  color: #4caf50;
}

/* Light Theme */
:root.light-theme {
  --bg-dark: #ffffff;
  --bg-secondary: #f5f5f5;
  --accent: #2c53ff;
  --text-light: #0b0b0d;
  --text-light-case: #3c6ffc;
  --text-muted: #444;
  --card-bg: #ffffff;
}


/* Navbar */
.light-theme .navbar a {
  color: var(--text-light);
}

/* Hero */
.light-theme .hero {
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
  color: var(--text-light);
}


/* Dark Sections (like pricing or sectors) */
.light-theme .section.dark {
  background-color: var(--bg-secondary);
}

/* Inputs */
.light-theme input,
.light-theme textarea {
  background: #ffffff;
  border: 1px solid #cdd7d5;
  color: #111;
}

.light-theme input::placeholder,
.light-theme textarea::placeholder {
  color: #666;
  opacity: 1;
}

/* Feature Cards */
.light-theme .feature-card {
  background: #ffffff;
  border: 1px solid #e5f0ee;
  transition: all 0.3s ease;
}

.light-theme .feature-card:hover {
  border-color: linear-gradient(to right, #2c53ff, #3c5ff8);
  box-shadow: 0 14px 30px rgba(44, 83, 255, 0.35);
  transform: translateY(-5px);
}

/* Accent + Section Titles */
.light-theme .accent,
.light-theme .section-title {
  background: linear-gradient(to right, #2c53ff, #3c5ff8);
  -webkit-background-clip: text;
  color: transparent;
}


.light-theme .btn.primary {
  background-color: var(--accent);
  color: #fff;
}

.light-theme .btn.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}


/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0;
  margin: 0;
  line-height: 1;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
  color: var(--accent);
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

/* Demo Video Section */
.demo-video {
  text-align: center;
}

/* BIG responsive container */
.video-container {
  width: min(1100px, 92vw);
  /* big on desktop, fits on mobile */
  margin: 2.5rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: #000;
}

/* Ensure the video fills container */
.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional: keep a consistent cinematic shape */
.video-container {
  aspect-ratio: 16 / 9;
}

.video-container video {
  height: 100%;
  object-fit: cover;
}


.cs-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 1rem;
  color: var(--text-light);
}

.cs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cs-kicker {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(44,83,255,0.18);
  padding: .35rem .6rem;
  border-radius: 999px;
}

.cs-title {
  margin: .9rem 0 .6rem;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
}

.cs-subtitle {
  max-width: 820px;
  margin: 0.25rem auto 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

/* “Report pages” mock */
.cs-mock {
  position: relative;
  min-height: unset;
}

.cs-page {
  background: var(--card-bg);
  border: 1px solid rgba(148, 163, 184, .45);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, .08);
  overflow: hidden;
}

.cs-page--front {
  position: relative;
  padding: 18px 18px 22px;
}

.cs-page--back {
  position: absolute;
  right: -22px;
  top: 44px;
  width: 92%;
  padding: 18px 18px 20px;
  transform: rotate(1.2deg);
  z-index: -1;
  opacity: .98;
}

.cs-page-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(148, 163, 184, .35);
}

.cs-brand {
  height: 28px;
  width: auto;
}

.cs-tag {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(44,83,255,0.18);
  padding: .35rem .55rem;
  border-radius: 999px;
}

.cs-cover {
  padding-top: 16px;
}

.cs-heroimg {
  height: 220px;
  border-radius: 14px;
 color: var(--text-light);
  /* border: 1px solid rgba(255,255,255,0.12); */
  /* background: linear-gradient(135deg, rgba(44,83,255,0.20), rgba(255,255,255,0.04)); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 10px 0 14px;
}

.cs-cover-title {
  margin: 0 0 .35rem;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--text-muted);
}

.cs-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 16px 0;
}

.cs-cover-sub {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cs-sites {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.cs-pill {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(148, 163, 184, .45);
  padding: .45rem .7rem;
  border-radius: 999px;
}

/* Back page content */
.cs-page-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.cs-stack {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  padding: 18px 18px 20px;
  overflow: hidden;
}

/* paper layers behind (no layout weirdness) */
.cs-stack::before,
.cs-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.cs-stack::before {
  transform: translate(14px, 14px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  opacity: .9;
}

.cs-stack::after {
  transform: translate(28px, 28px);
  opacity: .75;
}

.cs-stack-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 14px;
}

.cs-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}

.cs-stat {
  padding: .85rem .9rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148, 163, 184, .45);
}

.cs-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.cs-stat-value {
  display: block;
  font-weight: 800;
  color: var(--text-light-case);
}

.cs-stat-label {
  display: block;
  margin-top: .15rem;
  color: var(--text-muted);
  font-size: .9rem;
}

.cs-quote {
  margin: 1rem 0 1rem;
  padding: 1rem 1rem;
  border-left: 4px solid rgba(59, 130, 246, .55);
  background: rgba(59, 130, 246, .08);
  border-radius: 14px;
}

.cs-quote p {
  margin: 0;
  color: #0f172a;
  line-height: 1.7;
  font-weight: 500;
}

.cs-quote-meta {
  display: block;
  margin-top: .65rem;
  color: #64748b;
  font-size: .9rem;
  font-weight: 600;
}

.cs-mini h5 {
  margin: .25rem 0 .5rem;
  font-size: .95rem;
}

.cs-mini ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #475569;
  line-height: 1.65;
}

/* Right column cards */
.cs-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cs-card {
  background: var(--card-bg);
  border: 1px solid rgba(148, 163, 184, .45);
  border-radius: 16px;
  padding: 1.1rem 1.1rem;
  box-shadow: 0 12px 30px rgba(2, 6, 23, .06);
}

.cs-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

.cs-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.cs-steps {
  margin: .25rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.cs-bullets {
  margin: .25rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.cs-card--accent {
  background: linear-gradient(135deg, rgba(44,83,255,0.22), rgba(255,255,255,0.03));
  border: 1px solid rgba(44,83,255,0.35);
}

.cs-cta {
  display: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 980px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }

  .cs-page--back {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
    z-index: 0;
    margin-top: 1rem;
  }
}

@media (max-width: 980px) {
  .cs-stats-row {
    grid-template-columns: 1fr;
  }
}

.cs-card--combo {
  padding: 1.15rem 1.15rem;
}

.cs-combo-title {
  margin: 0 0 .9rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.cs-combo-grid {
  display: grid;
  gap: .85rem;
}

.cs-combo-block {
  border-radius: 14px;
  padding: .95rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148, 163, 184, .45);

}

.cs-combo-head {
  font-weight: 800;
  color: var(--text-light-case);
  margin-bottom: .45rem;
}

.cs-combo-text {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
  list-style: none;

}

/* Lists */
.cs-combo-steps,
.cs-combo-bullets {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  list-style: none;

}

.cs-combo-steps li,
.cs-combo-bullets li {
  margin: .25rem 0;
}