@charset "UTF-8";
/* CSS Boilerplate - Version simplifiée
   Système de thèmes, composants de base et utilitaires */
/* === VARIABLES CSS === */
:root {
  /* Couleurs principales */
  --bg: #ffffff;
  --text: #151515;
  --muted: #6b7280;
  --surface: #f6f7fb;
  --card: #ffffff;
  --border: #e5e7eb;
  --accent: #5b7cfa;
  --accent-light: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  /* Rayons */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
}

/* Mode sombre */
html[data-theme=dark] {
  --bg: #0f1115;
  --text: #e6e6e6;
  --muted: #9aa0ab;
  --surface: #0b0d11;
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);
  --accent: #7aa2ff;
  --accent-light: #0b0d11;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Système automatique */
@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    --bg: #0f1115;
    --text: #e6e6e6;
    --muted: #9aa0ab;
    --surface: #0b0d11;
    --card: rgba(255,255,255,.06);
    --border: rgba(255,255,255,.12);
    --accent: #7aa2ff;
    --accent-light: #0b0d11;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
  }
}
/* === BASE === */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section {
  padding: var(--space-lg) 0;
}

.section-alt {
  background: var(--surface);
}

/* === GRILLES === */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}
/* === FLEXBOX === */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm {
  gap: var(--space-xs);
}

.gap-md {
  gap: var(--space-sm);
}

.gap-lg {
  gap: var(--space-md);
}

/* === TYPOGRAPHIE === */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-sm);
  font-weight: 700;
  line-height: 1.2;
}

.title {
  font-size: 2.5rem;
  font-weight: 800;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--muted);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.text-small {
  font-size: 0.875rem;
}

/* === CARTES === */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(91, 124, 250, 0.2);
}

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}

.card-title {
  margin: 0;
  font-size: 1.25rem;
}

/* Pricing Card Lists */
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.card ul li:last-child {
  border-bottom: none;
}

/* Disabled features styling */
.disabled-feature {
  color: var(--muted);
  opacity: 0.6;
  text-decoration: line-through;
  position: relative;
}

.disabled-feature::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--muted);
  opacity: 0.7;
}

/* Tooltip dans disabled feature doit être visible */
.disabled-feature .tooltip-bubble {
  opacity: 0 !important;
  visibility: hidden !important;
}

.disabled-feature:hover .tooltip-bubble {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Tooltip System - CSS pur */
.has-tooltip {
  position: relative;
}

.tooltip-trigger {
  cursor: help;
  display: inline;
}

.asterisk {
  color: var(--accent);
  font-weight: bold;
  margin-left: 2px;
  font-size: 0.9em;
}

.tooltip-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  width: 250px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  white-space: normal;
  word-wrap: break-word;
  /* Position 25px au-dessus, centré horizontalement */
  left: 50%;
  bottom: calc(100% + 25px);
}

.tooltip-bubble::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border: none;
}

/* Mode sombre pour les tooltips */
html[data-theme=dark] .tooltip-bubble {
  background: rgba(15, 17, 21, 0.95);
  color: var(--text);
}

html[data-theme=dark] .tooltip-bubble::before {
  background: rgba(15, 17, 21, 0.95);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) .tooltip-bubble {
    background: rgba(15, 17, 21, 0.95);
    color: var(--text);
  }
  html:not([data-theme]) .tooltip-bubble::before {
    background: rgba(15, 17, 21, 0.95);
  }
}
.has-tooltip:hover .tooltip-bubble {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Price styling */
.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: var(--space-sm) 0;
}

.price.free {
  color: var(--secondary);
}

.price.premium {
  color: var(--accent);
}

.price-period {
  font-size: 1rem;
  font-weight: normal;
  color: var(--muted);
}

/* Step circles */
.step-circle {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto var(--space-sm);
}

/* Badge colors */
.badge.free {
  background: var(--secondary);
}

/* Icons size */
.icon-lg {
  font-size: 2rem;
}

/* Card headers spacing */
.card .card-title {
  margin-top: var(--space-sm);
}

/* Card actions */
.card-actions {
  margin-top: var(--space-md);
}

.card-actions .text-small {
  margin-top: var(--space-sm);
}

/* Footer styling */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
}

.footer h4 {
  color: var(--accent);
  font-weight: 700;
}

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-light);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  background: var(--surface);
}

/* === FORMULAIRES === */
.form-group {
  margin-bottom: var(--space-sm);
}

.label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text);
}

.input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 124, 250, 0.1);
}

.textarea {
  resize: vertical;
  min-height: 100px;
}

/* === NAVIGATION === */
.nav {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}

.nav-list {
  display: flex;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--surface);
}

/* === UTILITAIRES === */
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.m-0 {
  margin: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.ml-sm {
  margin-left: var(--space-sm);
}

.mr-sm {
  margin-right: var(--space-sm);
}

.p-0 {
  padding: 0;
}

.pt-sm {
  padding-top: var(--space-sm);
}

.pb-sm {
  padding-bottom: var(--space-sm);
}

.pl-sm {
  padding-left: var(--space-sm);
}

.pr-sm {
  padding-right: var(--space-sm);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.rounded {
  border-radius: var(--radius-sm);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.shadow {
  box-shadow: var(--shadow);
}

/* === ANIMATIONS === */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
  animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-md);
  }
}
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }
  .section {
    padding: var(--space-md) 0;
  }
  .nav-list {
    flex-direction: column;
    gap: var(--space-xs);
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  .title {
    font-size: 1.75rem;
  }
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}
/* === COMPOSANTS AVANCÉS === */
.hero {
  padding: var(--space-lg) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(91, 124, 250, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(91, 124, 250, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-light);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(91, 124, 250, 0.2);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-md) 0;
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* === PRINT === */
@media print {
  .no-print {
    display: none !important;
  }
  .container {
    max-width: none;
    padding: 0;
  }
  .shadow {
    box-shadow: none;
  }
}
/* === AMÉLIORATIONS VISUELLES === */
/* Header avec glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 70%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  font-size: 1.125rem;
}

.nav {
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
}

.nav-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.6rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: color-mix(in oklab, var(--accent) 12%, transparent);
}

.nav-link.active {
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  font-weight: 600;
}

/* Menu mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.6rem;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: color-mix(in oklab, var(--accent) 12%, transparent);
}

/* Theme switcher */
.theme-switcher {
  display: flex;
  gap: 0.25rem;
  margin-left: 1rem;
  padding: 0.25rem;
  background: var(--surface);
  border-radius: 0.6rem;
  border: 1px solid var(--border);
}

.theme-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--muted);
  font-size: 1.2rem;
}

.theme-icon:hover {
  background: var(--card);
  color: var(--text);
}

.theme-icon[aria-pressed=true] {
  background: var(--accent);
  color: var(--accent-light);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }
  .theme-switcher {
    margin-left: 0.5rem;
  }
  .theme-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
}
/* Language switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  margin-left: 0.5rem;
  padding: 0.25rem;
  background: var(--surface);
  border-radius: 0.6rem;
  border: 1px solid var(--border);
}

.lang-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.lang-icon:hover {
  background: var(--card);
  color: var(--text);
}

.lang-icon[aria-pressed=true] {
  background: var(--accent);
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .language-switcher {
    margin-left: 0.25rem;
  }
  .lang-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}
/* Boutons avec effets modernes */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}

/* Titre avec gradient - désactivé pour mode clair */
.title {
  color: var(--text);
  /* Gradient désactivé temporairement pour corriger le mode clair
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 50%, var(--text) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease-in-out infinite;
  */
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
/* Sections avec patterns subtils */
.section-alt {
  position: relative;
}
.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(91, 124, 250, 0.03) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Améliorations pour les formulaires */
.input, .textarea {
  transition: all 0.3s ease;
}
.input:focus, .textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 0 0 3px rgba(91, 124, 250, 0.1), 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Loading spinner amélioré */
.loading {
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent);
  border: none;
}
.loading::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: var(--bg);
}

/* Table responsive avec style moderne */
table th {
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
table tr {
  transition: background 0.2s ease;
}
table tr:hover {
  background: rgba(91, 124, 250, 0.03);
}

/* Animation pour les éléments qui apparaissent */
.animate-in {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === BENEFITS SECTION === */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.icon-xl {
  font-size: 4rem !important;
  color: var(--accent);
}

.benefit-hero {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(91, 124, 250, 0.05) 0%, rgba(91, 124, 250, 0.02) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.benefit-hero .icon-xl {
  display: block;
  margin: 0 auto var(--space-sm);
  position: relative;
  z-index: 2;
}

/* Confetti animation */
.confetti {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 1px;
  pointer-events: none;
  z-index: 1;
}

.confetti-piece {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
  offset-path: path("M 0 0");
  offset-distance: 0%;
}

/* Show and animate when active */
.benefit-hero.confetti-active .confetti-piece {
  visibility: visible;
}

.benefit-hero:not(.confetti-active) .confetti-piece {
  animation-play-state: paused;
}

/* 20 confetti pieces with smooth curved paths - falling downwards */
.confetti-piece:nth-child(1) {
  offset-path: path("M 0 0 Q -90 150 150 -500");
  animation: confetti-motion 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-1 4s linear forwards;
  animation-delay: 0s;
  color: #ff6b6b;
}

.confetti-piece:nth-child(2) {
  offset-path: path("M 0 0 Q 110 160 -180 -520");
  animation: confetti-motion 4.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-2 4.3s linear forwards;
  animation-delay: 0.1s;
  color: #4ecdc4;
}

.confetti-piece:nth-child(3) {
  offset-path: path("M 0 0 Q -50 140 80 -480");
  animation: confetti-motion 4.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-3 4.1s linear forwards;
  animation-delay: 0.2s;
  color: #ffe66d;
}

.confetti-piece:nth-child(4) {
  offset-path: path("M 0 0 Q 75 175 120 550");
  animation: confetti-motion 4.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-4 4.4s linear forwards;
  animation-delay: 0.05s;
  color: #95e1d3;
}

.confetti-piece:nth-child(5) {
  offset-path: path("M 0 0 Q -120 155 -200 510");
  animation: confetti-motion 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-5 4.2s linear forwards;
  animation-delay: 0.15s;
  color: #f38181;
}

.confetti-piece:nth-child(6) {
  offset-path: path("M 0 0 Q 130 150 220 500");
  animation: confetti-motion 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-6 4.5s linear forwards;
  animation-delay: 0.25s;
  color: #aa96da;
}

.confetti-piece:nth-child(7) {
  offset-path: path("M 0 0 Q -65 170 -100 540");
  animation: confetti-motion 4.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-7 4.3s linear forwards;
  animation-delay: 0.3s;
  color: #fcbad3;
}

.confetti-piece:nth-child(8) {
  offset-path: path("M 0 0 Q 85 145 140 490");
  animation: confetti-motion 4.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-8 4.1s linear forwards;
  animation-delay: 0.12s;
  color: #a8e6cf;
}

.confetti-piece:nth-child(9) {
  offset-path: path("M 0 0 Q -105 165 -180 530");
  animation: confetti-motion 4.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-9 4.4s linear forwards;
  animation-delay: 0.18s;
  color: #ffd3b6;
}

.confetti-piece:nth-child(10) {
  offset-path: path("M 0 0 Q 95 155 160 510");
  animation: confetti-motion 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-10 4.2s linear forwards;
  animation-delay: 0.08s;
  color: #ffaaa5;
}

.confetti-piece:nth-child(11) {
  offset-path: path("M 0 0 Q -75 180 -120 560");
  animation: confetti-motion 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-11 4.5s linear forwards;
  animation-delay: 0.22s;
  color: #ff9ff3;
}

.confetti-piece:nth-child(12) {
  offset-path: path("M 0 0 Q 115 170 200 540");
  animation: confetti-motion 4.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-12 4.3s linear forwards;
  animation-delay: 0.28s;
  color: #54a0ff;
}

.confetti-piece:nth-child(13) {
  offset-path: path("M 0 0 Q -40 150 -60 500");
  animation: confetti-motion 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-13 4s linear forwards;
  animation-delay: 0.14s;
  color: #48dbfb;
}

.confetti-piece:nth-child(14) {
  offset-path: path("M 0 0 Q 65 185 100 570");
  animation: confetti-motion 4.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-14 4.4s linear forwards;
  animation-delay: 0.06s;
  color: #1dd1a1;
}

.confetti-piece:nth-child(15) {
  offset-path: path("M 0 0 Q -125 160 -220 520");
  animation: confetti-motion 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-15 4.2s linear forwards;
  animation-delay: 0.2s;
  color: #feca57;
}

.confetti-piece:nth-child(16) {
  offset-path: path("M 0 0 Q 135 155 240 510");
  animation: confetti-motion 4.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-16 4.1s linear forwards;
  animation-delay: 0.16s;
  color: #ff6348;
}

.confetti-piece:nth-child(17) {
  offset-path: path("M 0 0 Q -85 175 -140 550");
  animation: confetti-motion 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-17 4.5s linear forwards;
  animation-delay: 0.11s;
  color: #ff9ff3;
}

.confetti-piece:nth-child(18) {
  offset-path: path("M 0 0 Q 55 165 90 530");
  animation: confetti-motion 4.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-18 4.3s linear forwards;
  animation-delay: 0.24s;
  color: #ee5a6f;
}

.confetti-piece:nth-child(19) {
  offset-path: path("M 0 0 Q -100 180 -170 560");
  animation: confetti-motion 4.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-19 4.2s linear forwards;
  animation-delay: 0.09s;
  color: #c44569;
}

.confetti-piece:nth-child(20) {
  offset-path: path("M 0 0 Q 80 170 130 580");
  animation: confetti-motion 4.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, confetti-rotate-20 4.4s linear forwards;
  animation-delay: 0.13s;
  color: #5f27cd;
}

/* Motion path animation - moves confetti along the curved path */
@keyframes confetti-motion {
  0% {
    offset-distance: 0%;
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
/* Rotation animations for each confetti */
@keyframes confetti-rotate-1 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes confetti-rotate-2 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -400deg;
  }
}
@keyframes confetti-rotate-3 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 320deg;
  }
}
@keyframes confetti-rotate-4 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -360deg;
  }
}
@keyframes confetti-rotate-5 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 420deg;
  }
}
@keyframes confetti-rotate-6 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -380deg;
  }
}
@keyframes confetti-rotate-7 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 340deg;
  }
}
@keyframes confetti-rotate-8 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -420deg;
  }
}
@keyframes confetti-rotate-9 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 380deg;
  }
}
@keyframes confetti-rotate-10 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -340deg;
  }
}
@keyframes confetti-rotate-11 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 400deg;
  }
}
@keyframes confetti-rotate-12 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -360deg;
  }
}
@keyframes confetti-rotate-13 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 320deg;
  }
}
@keyframes confetti-rotate-14 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -390deg;
  }
}
@keyframes confetti-rotate-15 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes confetti-rotate-16 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -410deg;
  }
}
@keyframes confetti-rotate-17 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 380deg;
  }
}
@keyframes confetti-rotate-18 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -370deg;
  }
}
@keyframes confetti-rotate-19 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 420deg;
  }
}
@keyframes confetti-rotate-20 {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: -350deg;
  }
}
.editor-demo {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow);
}

.editor-demo-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border);
}
.editor-demo-header .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--accent);
}
.editor-demo-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.editor-demo-content {
  padding: var(--space-md) 0;
}

.demo-title-centered {
  text-align: center;
  margin-bottom: var(--space-md);
}

.demo-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin: 0;
  color: var(--text);
}

.typing-target {
  display: inline-block;
  min-width: 20px;
}

.highlighted-text {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
  background-repeat: no-repeat;
  background-size: 100% 1.2em;
  background-position: 0 0.25em;
  padding: 0 0.25em;
  color: var(--accent-light);
  font-weight: 600;
  border-radius: 0.25rem;
  display: inline-block;
  line-height: 1.3;
  position: relative;
}
.highlighted-text::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: var(--accent-light);
  margin-left: 0.1em;
  animation: blink 1s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.benefit-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.benefit-item .material-symbols-outlined {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.benefit-item h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}
.benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .demo-title {
    font-size: 1.5rem;
  }
  .editor-demo {
    padding: var(--space-sm);
  }
  .benefit-item {
    padding: var(--space-sm);
  }
}/*# sourceMappingURL=styles.css.map */