/* css/app.css */
/* 🧠 CogniStyle Premium Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Color Palette (Sleek Space & Intellectual Glow) */
  --bg-gradient: linear-gradient(135deg, #0d0e15 0%, #1a1c29 100%);
  --panel-bg: rgba(26, 28, 41, 0.65);
  --panel-border: rgba(255, 255, 255, 0.08);
  --primary: #6c5ce7;
  --primary-glow: rgba(108, 92, 231, 0.4);
  --secondary: #00cec9;
  --secondary-glow: rgba(0, 206, 201, 0.3);
  --accent: #fd79a8;
  --text-main: #f5f6fa;
  --text-muted: #a5b1c2;
  --card-hover-bg: rgba(255, 255, 255, 0.04);
  
  /* Status Colors */
  --correct: #00b894;
  --correct-glow: rgba(0, 184, 148, 0.4);
  --wrong: #d63031;
  --wrong-glow: rgba(214, 48, 49, 0.4);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
  padding: 20px;
}

/* App Container */
.app-container {
  width: 100%;
  max-width: 900px;
  min-height: 80vh;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header */
.app-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.logo-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px var(--primary-glow));
  animation: float 4s ease-in-out infinite;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b1c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(108,92,231,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ────────────────────────────────────────────────────────────────
   HOME VIEW
──────────────────────────────────────────────────────────────── */
.home-view {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 206, 201, 0.2));
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--card-hover-bg);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  font-size: 28px;
  background: rgba(108, 92, 231, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────────
   ASSESSMENT (QUESTIONNAIRE) VIEW
──────────────────────────────────────────────────────────────── */
.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  width: 0%;
  transition: width 0.4s ease-out;
  box-shadow: 0 0 10px var(--secondary-glow);
}

.question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.question-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.question-category {
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.question-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 35px;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.option-btn:hover {
  background: rgba(108, 92, 231, 0.08);
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.15);
}

.option-btn .option-indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: var(--transition-smooth);
}

.option-btn:hover .option-indicator {
  border-color: var(--primary);
  background: var(--primary);
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* ────────────────────────────────────────────────────────────────
   MINI GAMES COMMON
──────────────────────────────────────────────────────────────── */
.game-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

.game-header {
  margin-bottom: 20px;
}

.game-badge {
  background: rgba(0, 206, 201, 0.1);
  color: var(--secondary);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.game-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.game-preview-icon {
  font-size: 80px;
  margin-bottom: 40px;
  animation: float 3s ease-in-out infinite;
}

.game-stats {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.level-badge, .score-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}

.game-timer {
  font-size: 72px;
  font-weight: 800;
  color: var(--secondary);
  text-shadow: 0 0 20px var(--secondary-glow);
  margin: 30px 0;
}

/* Memory Flash specific */
.emoji-display-box {
  display: flex;
  justify-content: center;
  gap: 16px;
  min-height: 120px;
  margin: 20px 0;
  align-items: center;
}

.emoji-flash-item {
  font-size: 56px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
  width: 100%;
  max-width: 440px;
}

.btn-emoji {
  font-size: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-emoji:hover:not(:disabled) {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.btn-emoji.selected {
  opacity: 0.3;
  transform: scale(0.9);
}

.btn-emoji.correct {
  background: var(--correct);
  border-color: var(--correct);
  box-shadow: 0 0 15px var(--correct-glow);
  transform: scale(1.05);
}

.btn-emoji.wrong {
  background: var(--wrong);
  border-color: var(--wrong);
  box-shadow: 0 0 15px var(--wrong-glow);
  transform: scale(1.05);
  animation: shake 0.5s;
}

/* Pattern Hunt specific */
.pattern-desc {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pattern-sequence-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 30px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.pattern-item {
  font-size: 36px;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.pattern-item.question-mark {
  background: rgba(108, 92, 231, 0.15);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 800;
}

.pattern-item.question-mark.correct {
  background: var(--correct);
  border-color: var(--correct);
  color: white;
}

.pattern-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 400px;
}

.btn-pattern-option {
  font-size: 24px;
  font-weight: 700;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-pattern-option:hover:not(:disabled) {
  transform: translateY(-4px);
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary-glow);
}

.btn-pattern-option.correct {
  background: var(--correct);
  border-color: var(--correct);
  box-shadow: 0 0 15px var(--correct-glow);
}

.btn-pattern-option.wrong {
  background: var(--wrong);
  border-color: var(--wrong);
  box-shadow: 0 0 15px var(--wrong-glow);
  animation: shake 0.5s;
}

/* Finished score block */
.game-score-result {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.score-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.score-number {
  font-family: 'Outfit', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--secondary);
  text-shadow: 0 0 20px var(--secondary-glow);
}

.game-message {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 40px;
}

/* ────────────────────────────────────────────────────────────────
   RESULTS VIEW
──────────────────────────────────────────────────────────────── */
.results-view {
  z-index: 1;
}

.results-header-block {
  text-align: center;
  margin-bottom: 40px;
}

.results-header-block h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.brain-type-hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.brain-type-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.brain-type-icon-lg {
  font-size: 100px;
  margin-bottom: 16px;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.brain-type-name {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.brain-type-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.input-style-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.chart-container-block {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--panel-border);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chart-container-block h3 {
  font-size: 20px;
  margin-bottom: 24px;
}

.chart-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

/* Strengths Grid */
.section-title-block {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 20px;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.strengths-grid-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.strength-view-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition-smooth);
}

.strength-view-card:hover {
  transform: translateY(-4px);
  background: var(--card-hover-bg);
  border-color: rgba(255, 255, 255, 0.08);
}

.strength-view-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.strength-view-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Challenges View */
.challenge-view-card {
  background: rgba(253, 121, 168, 0.04);
  border: 1px solid rgba(253, 121, 168, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.challenge-view-card h4 {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.challenge-advice {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.5;
}

.challenge-solution-box {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
}

/* Recommendations Grid */
.recs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rec-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.rec-card:hover {
  transform: translateY(-4px);
  background: var(--card-hover-bg);
}

.rec-icon {
  font-size: 32px;
  background: rgba(255,255,255,0.03);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
}

.rec-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rec-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Career suit block */
.career-match-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.career-view-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.career-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.career-icon-tag {
  font-size: 24px;
}

.career-title {
  font-size: 15px;
  font-weight: 700;
}

.career-match-pct {
  background: rgba(0, 206, 201, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(0, 206, 201, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}

/* School matching list */
.school-match-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.school-match-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.school-match-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.school-match-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-school-action {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-school-action:hover {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Action section */
.results-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 50px;
}

/* ────────────────────────────────────────────────────────────────
   BUTTONS & COMMON UI UTILITIES
──────────────────────────────────────────────────────────────── */
.btn {
  font-family: inherit;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(108, 92, 231, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.02);
}

.btn-success {
  background: linear-gradient(135deg, var(--correct) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 184, 148, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 184, 148, 0.45);
}

.btn-md {
  padding: 14px 28px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.glow-effect:hover::after {
  left: 125%;
}

/* ────────────────────────────────────────────────────────────────
   ANIMATIONS & RESPONSIVE
──────────────────────────────────────────────────────────────── */
.animated {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.fadeIn {
  animation-name: fadeIn;
}

.pulse-text {
  animation: pulse 1.8s infinite;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  
  .app-container {
    margin: 20px auto;
  }
  
  .glass-panel {
    padding: 24px;
  }
  
  .hero-title {
    font-size: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .strengths-grid-view {
    grid-template-columns: 1fr;
  }
  
  .recs-grid {
    grid-template-columns: 1fr;
  }
  
  .career-match-list {
    grid-template-columns: 1fr;
  }
  
  .school-match-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .btn-school-action {
    width: 100%;
    text-align: center;
  }
  
  .results-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .selection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ────────────────────────────────────────────────────────────────
   STATIC LANDING PAGE STYLES (BrainCraft Hybrid Master Plan)
   ──────────────────────────────────────────────────────────────── */
.landing-page-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--text-main);
  animation: fadeIn 0.8s ease-out;
}

/* Header */
.lp-header {
  border-bottom: 1px solid var(--panel-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 14, 21, 0.85);
  margin-bottom: 40px;
}

.lp-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-logo .logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b1c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-nav {
  display: flex;
  gap: 24px;
}

.lp-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.lp-nav a:hover {
  color: var(--secondary);
}

/* Hero Section */
.lp-hero {
  text-align: center;
  padding: 60px 20px 80px;
  position: relative;
}

.lp-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 25px;
}

.lp-hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* Value Props */
.lp-value-props {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.lp-value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  padding: 12px 24px;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.lp-value-item:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  background: rgba(0, 206, 201, 0.05);
}

.lp-value-item .value-text {
  font-size: 14px;
  font-weight: 700;
}

/* LP Sections */
.lp-section {
  padding: 80px 0;
  border-top: 1px solid var(--panel-border);
}

.lp-alt-bg {
  background: rgba(255, 255, 255, 0.01);
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 50vw;
  padding-right: 50vw;
}

.lp-section-title {
  font-family: 'Outfit', sans-serif;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #a5b1c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 50px;
}

/* Features Grid */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.lp-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lp-feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
  background: rgba(108, 92, 231, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.lp-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.lp-feature-example {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--secondary);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-main);
}

/* Buttons */
.btn-lp-header-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
  transition: var(--transition-smooth);
}

.btn-lp-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.5);
}

.btn-lp-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 800;
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
  transition: var(--transition-smooth);
}

.btn-lp-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(108, 92, 231, 0.6);
}

.btn-lp-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border: 1px solid var(--panel-border);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-lp-secondary:hover {
  border-color: var(--secondary);
  background: rgba(0, 206, 201, 0.08);
}

/* CTA Wrapper */
.lp-cta-wrapper {
  margin-top: 20px;
}

.lp-cta-features {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.lp-cta-features .separator {
  opacity: 0.3;
}

.lp-stats-note {
  margin-top: 15px;
  font-size: 13px;
  color: var(--text-muted);
}

.lp-stats-note strong {
  color: var(--secondary);
}

/* Sample Display */
.lp-sample-display {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.lp-sample-chart {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-type-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Steps */
.lp-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.lp-step-card {
  flex: 1;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
  transition: var(--transition-smooth);
}

.lp-step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.lp-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.lp-step-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.lp-step-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.lp-step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-step-arrow {
  font-size: 24px;
  color: var(--primary);
  user-select: none;
}

/* Trust Section */
.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lp-trust-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
}

.lp-trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.lp-trust-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lp-trust-ref {
  margin-top: 10px;
}

.lp-trust-ref summary {
  font-size: 13px;
  color: var(--secondary);
  cursor: pointer;
  font-weight: 700;
}

.lp-trust-ref ul {
  margin-top: 8px;
  padding-left: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ */
.lp-faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.lp-faq-item {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

.lp-faq-item summary {
  padding: 18px 24px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  transition: var(--transition-smooth);
}

.lp-faq-item summary:hover {
  color: var(--secondary);
}

.lp-faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--panel-border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  animation: fadeIn 0.4s ease-out;
}

.lp-faq-answer p {
  margin-top: 14px;
}

/* Final CTA */
.lp-final-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 206, 201, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
  border-radius: 24px;
  border: 1px solid var(--panel-border);
  margin-bottom: 60px;
}

.lp-final-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.lp-final-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.btn-lp-large {
  font-size: 20px;
  padding: 20px 48px;
}

/* Footer */
.lp-footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--panel-border);
  color: var(--text-muted);
  font-size: 13px;
}

/* Responsive LP */
@media (max-width: 768px) {
  .lp-hero-title {
    font-size: 32px;
  }
  .lp-hero-desc {
    font-size: 14.5px;
  }
  .lp-nav {
    display: none;
  }
  .lp-features-grid, .lp-trust-grid, .lp-sample-display {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lp-steps-container {
    flex-direction: column;
    gap: 15px;
  }
  .lp-step-arrow {
    transform: rotate(90deg);
  }
  .btn-lp-primary {
    width: 100%;
    justify-content: center;
  }
}
