:root {
  --bg-dark: #0B0314;
  --bg-darker: #07020d;
  --primary-glow: #7E62EE;
  --secondary-glow: #674fee;
  --text-main: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif; /* Assumed standard tech font */
}

body.dark-theme {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* HERO */
.product-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.hero-glow {
  position: absolute;
  width: 40%;
  height: 40%;
  background: var(--primary-glow);
  filter: blur(150px);
  opacity: 0.2;
  z-index: -1;
}

.badge {
  color: var(--secondary-glow);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 800;
  display: block;
  margin-bottom: 20px;
  margin-top: 10rem;
}

h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: var(--text-dim);
}

/* BUTTONS */
.btn-main, .btn-alt {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  display: inline-block;
  margin: 10px;
}

.btn-alt:hover {
  background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
  color: white;
}

.btn-alt {
  border: 1px solid var(--text-dim);
  color: white;
}

.btn-alt:hover { transform: translateY(-1px); border: none; }

/* PERSONA SECTIONS */
.persona-section {
  padding: 100px 5%;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
}

.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reverse { direction: rtl; }
.reverse .persona-text { direction: ltr; }

.section-tag {
  color: var(--primary-glow);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gradient-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--secondary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.persona-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 30px;
}

.feature-list { list-style: none; }
.feature-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--secondary-glow);
}

/* VISUALS */
.image-frame {
  padding: 10px;
  
  border-radius: 20px;
}


.image-frame img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* BOTTOM CTA */
.bottom-cta {
  padding: 100px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-cta h2 { font-size: 2.5rem; margin-bottom: 30px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .persona-grid, .persona-grid.reverse {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .feature-list li { text-align: left; }
}