/* ==============================
   CS FOUNDATION — REDESIGN v2
   Clear. Direct. Personal.
   ============================== */

:root {
  --bg-primary: #08080d;
  --bg-secondary: #0e0e16;
  --bg-card: #131320;
  --bg-elevated: #1a1a2e;

  --text-primary: #eeeef2;
  --text-secondary: #9898b0;
  --text-muted: #5c5c73;

  --accent: #7c6cf0;
  --accent-light: #a498ff;
  --accent-glow: rgba(124, 108, 240, 0.25);

  --green: #34d399;
  --green-glow: rgba(52, 211, 153, 0.12);
  --red-soft: #f87171;
  --red-glow: rgba(248, 113, 113, 0.08);

  --java: #e8973f;
  --python: #4b8bbe;
  --fullstack: #34d399;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ==============================
   RESET
   ============================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 56px; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, #7c6cf0, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==============================
   BUTTONS
   ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: #8b7df5;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 108, 240, 0.4);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.1rem; border-radius: var(--radius-lg); }

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-course {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  color: #fff;
  transition: all 0.25s ease;
}

.java-btn { background: var(--java); box-shadow: 0 4px 16px rgba(232, 151, 63, 0.25); }
.java-btn:hover { background: #f0a04f; transform: translateY(-2px); }
.python-btn { background: var(--python); box-shadow: 0 4px 16px rgba(75, 139, 190, 0.25); }
.python-btn:hover { background: #5a9bcc; transform: translateY(-2px); }
.fullstack-btn { background: var(--fullstack); color: #08080d; box-shadow: 0 4px 16px rgba(52, 211, 153, 0.25); }
.fullstack-btn:hover { background: #45e0a8; transform: translateY(-2px); }

/* ==============================
   NAVBAR
   ============================== */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8, 8, 13, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
}

.logo-bracket { color: var(--accent); }
.logo-dot { color: var(--accent-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: #8b7df5;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==============================
   HERO — The Whole Story Above the Fold
   ============================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(124, 108, 240, 0.12);
  top: -120px; left: -80px;
  animation: float 10s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(52, 211, 153, 0.08);
  bottom: -80px; right: -60px;
  animation: float 12s ease-in-out infinite reverse;
}

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

.hero-content {
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(124, 108, 240, 0.08);
  border: 1px solid rgba(124, 108, 240, 0.2);
  color: var(--accent-light);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease;
  letter-spacing: 0.3px;
}

.badge-sep {
  color: var(--text-muted);
  margin: 0 2px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  animation: fadeUp 0.5s ease 0.05s both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeUp 0.5s ease 0.1s both;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

/* The Promise Card — visible immediately, no scrolling */
.hero-promise {
  animation: fadeUp 0.6s ease 0.15s both;
  margin-bottom: 40px;
}

.promise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.promise-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.promise-step strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.promise-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-reassure {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

/* ==============================
   PROOF STRIP
   ============================== */

.proof-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.proof-item strong {
  color: var(--text-primary);
}

.proof-icon {
  font-size: 1.2rem;
}

.proof-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ==============================
   COURSES
   ============================== */

.courses-section {
  background: var(--bg-primary);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.course-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.course-card.featured {
  border-color: rgba(124, 108, 240, 0.25);
}

.course-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.java-accent { background: var(--java); }
.python-accent { background: var(--python); }
.fullstack-accent { background: var(--fullstack); }

.featured-ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.course-emoji {
  font-size: 2rem;
}

.course-level {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.course-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.course-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.course-details {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.course-details span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Curriculum Button */
.btn-curriculum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  background: rgba(124, 108, 240, 0.06);
  border: 1px solid rgba(124, 108, 240, 0.12);
  border-radius: var(--radius-md);
  color: var(--accent-light);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-curriculum:hover {
  background: rgba(124, 108, 240, 0.12);
}

.btn-curriculum .chevron {
  width: 16px; height: 16px;
  transition: transform 0.25s ease;
}

.btn-curriculum.active .chevron {
  transform: rotate(180deg);
}

/* Curriculum Accordion */
.curriculum {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.curriculum.open {
  max-height: 5000px;
}

.curriculum-module {
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.module-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.module-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(124, 108, 240, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

.module-title {
  font-size: 0.84rem;
  font-weight: 600;
  flex: 1;
}

.chevron-sm {
  width: 15px; height: 15px;
  color: var(--text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.module-header.active .chevron-sm {
  transform: rotate(180deg);
}

.module-topics {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 14px;
}

.module-topics.open {
  max-height: 500px;
  padding: 0 14px 12px;
}

.module-topics li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.5;
}

.module-topics li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.65rem;
}

/* ==============================
   PROMISE — Comparison
   ============================== */

.promise-section {
  background: var(--bg-secondary);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.compare-card.them {
  background: rgba(248, 113, 113, 0.03);
  border-color: rgba(248, 113, 113, 0.12);
}

.compare-card.us {
  background: rgba(52, 211, 153, 0.03);
  border-color: rgba(52, 211, 153, 0.15);
}

.compare-label {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-card li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 8px;
  border-left: 2px solid var(--border);
}

.compare-card.them li {
  border-left-color: rgba(248, 113, 113, 0.25);
}

.compare-card.us li {
  border-left-color: rgba(52, 211, 153, 0.35);
  color: var(--text-primary);
}

.compare-card.us li strong {
  color: var(--green);
}

/* ==============================
   BONUSES
   ============================== */

.bonuses-section {
  background: var(--bg-primary);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ai-card { border-color: rgba(52, 211, 153, 0.15); }
.ai-card:hover { border-color: rgba(52, 211, 153, 0.3); }

.interview-card { border-color: rgba(168, 130, 255, 0.15); }
.interview-card:hover { border-color: rgba(168, 130, 255, 0.3); }

.bonus-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.free-tag {
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.paid-tag {
  background: rgba(168, 130, 255, 0.08);
  color: #a882ff;
  border: 1px solid rgba(168, 130, 255, 0.2);
}

.bonus-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bonus-card > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
}

.bonus-list {
  margin-bottom: 16px;
}

.bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.check { color: var(--green); font-weight: 700; flex-shrink: 0; }

.bonus-footer {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 500;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ==============================
   FAQ
   ============================== */

.faq-section {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: rgba(124, 108, 240, 0.25); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.92rem;
}

.faq-item.open .faq-q .chevron-sm {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==============================
   FINAL CTA
   ============================== */

.final-cta {
  background: var(--bg-primary);
  padding: 80px 0;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(124, 108, 240, 0.2);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124, 108, 240, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
  position: relative;
}

.cta-card .btn {
  position: relative;
}

/* ==============================
   FOOTER
   ============================== */

.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 900px) {
  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(8, 8, 13, 0.96);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
  }

  .hero { min-height: auto; padding: 100px 20px 50px; }

  .hero-title { font-size: 2rem; }

  .promise-card {
    padding: 22px 20px;
  }

  .proof-items {
    flex-direction: column;
    gap: 14px;
  }

  .proof-divider { display: none; }

  .cta-card { padding: 40px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
  .course-card { padding: 22px; }
  .btn-xl { padding: 16px 28px; font-size: 1rem; }
}

/* ==============================
   SCROLLBAR & SELECTION
   ============================== */

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(124, 108, 240, 0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(124, 108, 240, 0.45); }

::selection {
  background: rgba(124, 108, 240, 0.3);
  color: var(--text-primary);
}
