﻿/* ═══════════════════════════════════════════
   Cheblai — L'annuaire de référence des outils IA
   Style global — Dark Tech Premium
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --green:        #00E676;
  --green-dim:    #00C853;
  --green-glow:   rgba(0, 230, 118, 0.15);
  --green-glow2:  rgba(0, 230, 118, 0.08);
  --bg:           #08080F;
  --bg2:          #0D0D18;
  --card:         #111120;
  --card-hover:   #161628;
  --surface:      rgba(17, 17, 32, 0.95);
  --border:       rgba(255,255,255,0.07);
  --border-green: rgba(0, 230, 118, 0.3);
  --text:         #E8E8F0;
  --text-muted:   #6B6B8A;
  --text-dim:     #9898B8;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 32px rgba(0,0,0,0.5);
  --shadow-green: 0 0 32px rgba(0, 230, 118, 0.2);
  --transition:   0.2s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

/* ── Fond Terre fixe avec parallax fort via transform ── */
html::before {
  content: '';
  position: fixed;
  inset: -120px;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  z-index: -2;
  will-change: transform;
  transform: translate(var(--tx, 0px), var(--ty, 0px));
}

/* ── Voile sombre global renforcé ── */
html::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 10, 0.72);
  z-index: -1;
}

body {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--green); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }

img { max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover {
  background: var(--green-dim);
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.35rem 0.9rem; font-size: 0.8rem; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 140px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Accent vert Cheblai sur l'image Terre */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 200px;
  height: 110%;
  background: linear-gradient(180deg,
    rgba(0,232,122,0)    0%,
    rgba(0,232,122,0.22) 35%,
    rgba(0,232,122,0.40) 55%,
    rgba(0,232,122,0.10) 80%,
    transparent          100%);
  transform: translateX(-50%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

/* Halo vert au sol */
.hero-glow-floor {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100px;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0,232,122,0.18) 0%, transparent 100%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--green-glow2);
  border: 1px solid var(--border-green);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 .accent { color: var(--green); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── SEARCH BAR ── */
.search-wrapper {
  max-width: 700px;
  margin: 0 auto 2rem;
  position: relative;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  gap: 0.5rem;
}

.search-bar:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-glow2), var(--shadow-green);
}

.search-bar svg {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 20px; height: 20px;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  min-width: 0;
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-bar button {
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.search-bar button:hover { background: var(--green-dim); transform: scale(1.02); }

.search-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.search-hint span { color: var(--text-dim); }

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat-number .unit { color: var(--green); }

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   SECTION GÉNÉRIQUE
══════════════════════════════════════════ */
.section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

.section-title span { color: var(--green); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ── Sections transparentes — le voile global suffit ── */
.section {
  background: transparent;
}

/* Hero = plus transparent pour voir l'image Terre */
.hero {
  background: transparent !important;
}

/* Sections légales (pages légales) */
.legal-content,
.legal-section {
  background: rgba(4, 4, 10, 0.45);
  border-radius: 16px;
  padding: 2rem !important;
}

/* ══════════════════════════════════════════
   FILTRES
══════════════════════════════════════════ */
.filters-bar {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 160px;
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.filter-select {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.filter-select:focus { border-color: var(--green); }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.chip {
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-family: inherit;
  transition: all var(--transition);
  white-space: nowrap;
}

.chip:hover { border-color: var(--green); color: var(--green); }
.chip.active {
  background: var(--green-glow);
  border-color: var(--green);
  color: var(--green);
}

.filter-results {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.filter-results strong { color: var(--green); }

/* ══════════════════════════════════════════
   GRILLE D'OUTILS
══════════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.tool-card {
  background: rgba(17, 17, 32, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--transition);
}

.tool-card:hover {
  background: var(--card-hover);
  border-color: rgba(0,230,118,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.tool-card:hover::before { background: var(--green); }

.tool-card.featured {
  border-color: rgba(0,230,118,0.15);
}
.tool-card.featured::before { background: linear-gradient(90deg, var(--green), transparent); }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-glow2);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  letter-spacing: -0.05em;
  overflow: hidden;
  position: relative;
}
.card-logo-img {
  width: 28px; height: 28px;
  object-fit: contain;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  image-rendering: -webkit-optimize-contrast;
}
.card-icon-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}

.card-meta {
  flex: 1;
  min-width: 0;
}

.card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-category {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.card-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}

.rating-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.rating-stars {
  display: flex;
  gap: 1px;
}

.star {
  width: 10px; height: 10px;
  fill: var(--green);
  opacity: 0.3;
}

.star.filled { opacity: 1; }
.star.half { opacity: 0.6; }

.rating-votes {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card-price {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.card-price.free { border-color: rgba(0,230,118,0.3); color: var(--green); background: var(--green-glow2); }
.card-price.freemium { border-color: rgba(100,200,255,0.3); color: #64C8FF; background: rgba(100,200,255,0.05); }

.card-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.card-label {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}

.label-coeur { background: rgba(255,100,100,0.12); color: #FF6464; border: 1px solid rgba(255,100,100,0.2); }
.label-pepite { background: rgba(255,196,0,0.1); color: #FFC400; border: 1px solid rgba(255,196,0,0.2); }
.label-prix { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid var(--border-green); }
.label-declin { background: rgba(150,150,150,0.1); color: #999; border: 1px solid rgba(150,150,150,0.2); }

.card-visit {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  transition: gap var(--transition);
}

.card-visit:hover { gap: 0.5rem; color: var(--white); }

/* ── NO RESULTS ── */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  grid-column: 1/-1;
}

.no-results h3 { font-size: 1.25rem; color: var(--text-dim); margin-bottom: 0.5rem; }

/* ══════════════════════════════════════════
   FEATURED / TRENDING
══════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.featured-card {
  background: linear-gradient(135deg, var(--card) 0%, rgba(0,230,118,0.04) 100%);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: all var(--transition);
  cursor: pointer;
}

.featured-card:hover {
  border-color: rgba(0,230,118,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.featured-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

.featured-info { flex: 1; min-width: 0; }

.featured-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.featured-cat {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.featured-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   EMAIL CAPTURE
══════════════════════════════════════════ */
.email-section {
  background: rgba(8, 8, 15, 0.22);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.email-section::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,230,118,0.06) 0%, transparent 70%);
}

.email-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.email-section h2 span { color: var(--green); }

.email-section p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  min-width: 200px;
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  outline: none;
  transition: border-color var(--transition);
}

.email-form input::placeholder { color: var(--text-muted); }
.email-form input:focus { border-color: var(--green); }

.email-form button {
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.email-form button:hover { background: var(--green-dim); box-shadow: var(--shadow-green); }

.email-note { font-size: 0.78rem; color: var(--text-muted); }

.email-success {
  display: none;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  color: var(--green);
  font-weight: 600;
  max-width: 480px;
  margin: 0 auto;
}

.email-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.benefit-icon { color: var(--green); font-size: 1rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3rem 2rem;
  background: transparent;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.footer-links a:hover { color: var(--green); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--card);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  animation: slideUp 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--border); color: var(--white); }

.modal-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.modal-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.modal-title-block { display: flex; flex-direction: column; }
.modal-title { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.modal-category { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.modal-rating { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.modal-score { font-size: 1.2rem; font-weight: 700; color: var(--green); }
.modal-votes { font-size: 0.78rem; color: var(--text-muted); }

.modal-desc {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.detail-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.modal-tag {
  font-size: 0.78rem;
  background: var(--green-glow2);
  border: 1px solid var(--border-green);
  color: var(--green);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
}

.modal-actions .btn { flex: 1; justify-content: center; padding: 0.75rem; }

/* ── VOTE SECTION ── */
.vote-section {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.vote-title {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.vote-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vote-star {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform var(--transition);
  filter: grayscale(1);
  opacity: 0.4;
}

.vote-star:hover,
.vote-star.active {
  transform: scale(1.2);
  filter: none;
  opacity: 1;
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  background: var(--card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: toastIn 0.3s ease;
  display: none;
}

.toast.show { display: block; }

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

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero { padding: 100px 1rem 60px; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3rem 1rem; }
  .tools-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .filters-bar { flex-direction: column; }
  .modal { padding: 1.5rem; }
  .modal-details { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
  .search-bar { flex-wrap: wrap; border-radius: var(--radius); }
  .search-bar button { width: 100%; border-radius: var(--radius); }
  .email-form { flex-direction: column; }
  .email-form button { width: 100%; }
  .modal-header { flex-direction: column; }
}

/* ── ANIMATIONS UTILITAIRES ── */
.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

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

/* ── LOADING SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, var(--card) 0%, var(--card-hover) 50%, var(--card) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
  height: 200px;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ══════════════════════════════════════════
   COMMENT ÇA MARCHE
══════════════════════════════════════════ */
.how-it-works {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(13, 13, 24, 0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.step:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
  opacity: 0.5;
  padding-top: 4rem;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .step-arrow { display: none; }
  .step { max-width: 100%; }
}

/* ══════════════════════════════════════════
   TÉMOIGNAGES
══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--green);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor pointer on search hints */
.search-hint span { cursor: pointer; }
.search-hint span:hover { color: var(--green); }

/* ══════════════════════════════════════════
   SEARCH RESULTS BANNER
══════════════════════════════════════════ */
.search-banner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.search-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.search-banner-icon { font-size: 1.5rem; flex-shrink: 0; }

.search-banner-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.search-banner-hint {
  font-size: 0.8rem;
  color: var(--green);
  opacity: 0.8;
}

.search-banner-clear {
  background: transparent;
  border: 1px solid var(--border-green);
  color: var(--text-dim);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
.search-banner-clear:hover { border-color: var(--green); color: var(--green); }

/* ══════════════════════════════════════════
   MODAL — COMMENT COMMENCER
══════════════════════════════════════════ */
.modal-steps {
  background: rgba(0,230,118,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 0;
}

.modal-steps-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.modal-step:last-child { margin-bottom: 0; }

.modal-step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ══════════════════════════════════════════
   MODAL — PROMPTS À COPIER
══════════════════════════════════════════ */
.modal-prompts {
  margin-top: 1.25rem;
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  overflow: hidden;
}

.modal-prompts-title {
  background: var(--green-glow);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-prompt-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}
.modal-prompt-item:hover { background: rgba(255,255,255,0.02); }

.prompt-text {
  flex: 1;
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-style: italic;
}

.prompt-copy-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition);
  color: var(--text-muted);
}
.prompt-copy-btn:hover { border-color: var(--green); background: var(--green-glow); }

/* ══════════════════════════════════════════
   LANGUAGE TOGGLE
══════════════════════════════════════════ */
.lang-toggle {
  min-width: 42px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-color: var(--border-green);
  color: var(--green);
  padding: 0.3rem 0.7rem;
}
.lang-toggle:hover {
  background: var(--green-glow);
  border-color: var(--green);
  color: var(--green);
}

/* ══════════════════════════════════════════
   ASSISTANT IA — Section
══════════════════════════════════════════ */
.assistant-section {
  background: transparent;
  border-top: 1px solid rgba(0,230,118,0.12);
  border-bottom: 1px solid rgba(0,230,118,0.12);
}

.assistant-wrapper {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.assistant-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.25rem;
}

.assistant-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -0.5rem;
}

.assistant-textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  padding: 1rem 1.2rem;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.assistant-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.12);
}

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

.assistant-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.assistant-submit {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.assistant-kbd {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ── États de chargement / erreur ── */
.chat-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem;
  color: var(--text-muted);
}

.chat-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.chat-error {
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.25);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  color: #ff9090;
  font-size: 0.92rem;
}

.chat-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0,230,118,0.05);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
}

/* ── Chat cards ── */
.chat-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.chat-card:hover {
  border-color: var(--border-green);
  transform: translateY(-2px);
}

.chat-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.chat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--green);
  flex-shrink: 0;
}

.chat-card-info {
  flex: 1;
  min-width: 0;
}

.chat-card-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.chat-card-role {
  font-size: 0.8rem;
  color: var(--green);
  margin-top: 0.1rem;
}

.chat-card-reason {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.chat-card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chat-prompt-btn {
  background: linear-gradient(135deg, rgba(0,230,118,0.12), rgba(0,230,118,0.06));
  border: 1px solid var(--border-green);
  color: var(--green);
  font-size: 0.8rem;
}

.chat-prompt-btn:hover {
  background: linear-gradient(135deg, rgba(0,230,118,0.22), rgba(0,230,118,0.12));
}

/* ── Prompt généré ── */
.chat-prompt-result {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.prompt-generating {
  color: var(--text-muted);
  font-size: 0.88rem;
  animation: pulse 1.2s ease-in-out infinite;
}

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

.generated-prompt {
  background: rgba(0,230,118,0.05);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.generated-prompt-label {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.generated-prompt-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 0.75rem;
}

/* ── Combo ── */
.chat-combo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Followup interactif ── */
.chat-followup {
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-top: 0.25rem;
}

.followup-question {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.followup-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.followup-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.followup-input:focus { border-color: var(--green); }
.followup-input::placeholder { color: var(--text-muted); }

.chat-reset {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* ══════════════════════════════════════════
   SÉLECTIONS ÉDITORIALES — picks
══════════════════════════════════════════ */
.selections-section {
  background: transparent;
}

.selections-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.selections-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 1.5rem;
}

.pick-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}

.pick-card:hover {
  transform: translateY(-3px);
}

.weekly-card {
  border-color: rgba(255,215,0,0.25);
  background: linear-gradient(145deg, var(--surface) 85%, rgba(255,215,0,0.04));
}

.weekly-card:hover { border-color: rgba(255,215,0,0.5); }

.monthly-card {
  border-color: var(--border-green);
  background: linear-gradient(145deg, var(--surface) 85%, rgba(0,230,118,0.04));
}

.monthly-card:hover { border-color: var(--green); }

.pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
}

.weekly-card .pick-badge {
  background: rgba(255,215,0,0.12);
  color: #ffd700;
  border: 1px solid rgba(255,215,0,0.3);
}

.monthly-card .pick-badge {
  background: rgba(0,230,118,0.1);
  color: var(--green);
  border: 1px solid var(--border-green);
}

.pick-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pick-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

.weekly-card .pick-icon {
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.3);
  color: #ffd700;
}

.pick-info { flex: 1; min-width: 0; }

.pick-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.pick-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.pick-rating {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffd700;
  flex-shrink: 0;
}

.pick-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.pick-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(0,230,118,0.06);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.weekly-card .pick-highlight {
  background: rgba(255,215,0,0.06);
  border-color: rgba(255,215,0,0.2);
}

.pick-highlight-icon { flex-shrink: 0; }

.pick-editor {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.pick-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pick-history {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.pick-history > summary {
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-muted);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pick-history > summary::-webkit-details-marker { display: none; }

.pick-history[open] > summary { color: var(--green); }

.pick-history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.pick-history-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.pick-history-item strong {
  color: var(--white);
}

/* ══════════════════════════════════════════
   RESPONSIVE — assistant + picks
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .assistant-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .assistant-submit { width: 100%; }
  .chat-card-actions { flex-direction: column; }
  .pick-actions { flex-direction: column; }
  .picks-grid { grid-template-columns: 1fr; }
}


