@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@2.44.0/tabler-icons.min.css');

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

:root {
  --navy: #070D1A;
  --navy-mid: #0D1B3E;
  --navy-logo: #0B1F4D;
  --cyan: #00C2FF;
  --cyan-logo: #35B6FF;
  --cyan-light: #49B8FF;
  --cyan-dim: rgba(0,194,255,0.25);
  --cyan-faint: rgba(0,194,255,0.06);
  --white: #F8F9FF;
  --white-60: rgba(248,249,255,0.6);
  --white-40: rgba(248,249,255,0.4);
  --white-20: rgba(248,249,255,0.2);
  --white-08: rgba(248,249,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(7,13,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(0,194,255,0.08);
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-brand .ai { color: var(--cyan-light); }

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

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.lang-switch { display: flex; gap: 0.5rem; }
.lang-btn {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border: 0.5px solid transparent;
  border-radius: 4px;
  transition: all 0.2s;
  background: none !important;
}
.lang-btn.active { color: var(--cyan); border-color: var(--cyan-dim); }
.lang-btn:hover { color: var(--white); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,194,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ANIMATION LOGO HERO */
.hero-logo-anim {
  position: relative;
  width: 560px;
  height: 560px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-circle {
  position: relative;
  z-index: 2;
  width: 340px; height: 340px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(53,182,255,0.3), 0 0 120px rgba(53,182,255,0.12);
  flex-shrink: 0;
}

.hero-logo-img {
  width: 310px;
  height: 310px;
  object-fit: contain;
  border-radius: 50%;
}

/* Orbites — positionnées par rapport au centre du conteneur */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(53,182,255,0.25);
  animation: spin-orbit 12s linear infinite;
  top: 50%; left: 50%;
}

.orbit-ring:nth-child(1) {
  width: 400px; height: 400px;
  margin-left: -200px; margin-top: -200px;
  border-color: rgba(53,182,255,0.28);
  animation-duration: 10s;
}
.orbit-ring:nth-child(2) {
  width: 480px; height: 480px;
  margin-left: -240px; margin-top: -240px;
  border-color: rgba(0,194,255,0.18);
  animation-duration: 16s;
  animation-direction: reverse;
}
.orbit-ring:nth-child(3) {
  width: 560px; height: 560px;
  margin-left: -280px; margin-top: -280px;
  border-color: rgba(0,194,255,0.09);
  animation-duration: 24s;
}

.orbit-ring::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--cyan-logo);
  border-radius: 50%;
  top: -4px; left: 50%;
  margin-left: -4px;
  box-shadow: 0 0 10px var(--cyan);
}

@keyframes spin-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Lignes de circuit qui rayonnent */
.circuit-lines {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Texte convergence */
.hero-convergence {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  height: 1.5rem;
}
.conv-word {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
  animation: converge-l 4s ease-in-out infinite alternate;
}
.conv-word.right {
  color: rgba(53,182,255,0.7);
  animation: converge-r 4s ease-in-out infinite alternate;
}
.conv-sep { font-size: 0.68rem; color: var(--white-20); animation: fade-sep 4s ease-in-out infinite alternate; }

@keyframes converge-l { from { transform: translateX(-14px); opacity: 0.3; } to { transform: translateX(0); opacity: 0.7; } }
@keyframes converge-r { from { transform: translateX(14px); opacity: 0.4; } to { transform: translateX(0); opacity: 0.9; } }
@keyframes fade-sep { from { opacity: 0.05; } to { opacity: 0.35; } }

/* Marque texte hero */
.hero-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 2rem;
  color: var(--white);
}
.hero-brand .ai { color: var(--cyan-light); }

.hero-tagline-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.hero-tagline-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-40);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white-60);
  border: 0.5px solid var(--white-20);
  border-radius: 8px;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--cyan-dim); color: var(--white); }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.scroll-hint {
  margin-top: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-20);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.2} 50%{opacity:0.6} }

/* SECTIONS */
section { padding: 6rem 2rem; }
.section-inner { max-width: 720px; margin: 0 auto; }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--white-40);
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.divider {
  width: 48px; height: 1px;
  background: var(--cyan-dim);
  margin: 2.5rem 0;
}

/* MANIFESTO */
.manifesto-section { background: var(--navy-mid); }

.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--white-60);
  margin-bottom: 1.5rem;
}

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin: 2.5rem 0; }

.pillar {
  border: 0.5px solid rgba(0,194,255,0.15);
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--cyan-faint);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--cyan-dim); }
.pillar-icon { font-size: 22px; color: var(--cyan); margin-bottom: 0.85rem; }
.pillar-title { font-size: 0.9rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.pillar-desc { font-size: 0.78rem; color: var(--white-40); line-height: 1.65; }

/* AI MANIFESTO */
.ai-manifesto-section { background: var(--navy); border-top: 0.5px solid rgba(0,194,255,0.1); }

.ai-letter {
  background: rgba(0,194,255,0.03);
  border: 0.5px solid var(--cyan-dim);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  margin-top: 2rem;
}
.ai-letter::before {
  content: '"';
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  color: rgba(0,194,255,0.1);
  line-height: 1;
}
.ai-letter-body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--white-60);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.ai-letter-body strong { color: var(--white); font-style: normal; }

.ai-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(0,194,255,0.15);
}
.ai-sig-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,194,255,0.1);
  border: 0.5px solid var(--cyan-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 16px; flex-shrink: 0;
}
.ai-sig-name { font-size: 0.85rem; font-weight: 500; color: var(--white); }
.ai-sig-role { font-size: 0.72rem; color: var(--white-40); letter-spacing: 0.05em; }

.ai-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0,194,255,0.04);
  border-left: 2px solid var(--cyan-dim);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.7;
  font-style: italic;
}

/* FORM */
.form-section { background: var(--navy-mid); border-top: 0.5px solid rgba(0,194,255,0.08); }
.form-wrap { max-width: 540px; margin: 0 auto; }
.form-grid { display: flex; flex-direction: column; gap: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
}
.field input {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(0,194,255,0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field input::placeholder { color: var(--white-20); }
.field input:focus {
  border-color: rgba(0,194,255,0.5);
  background: rgba(0,194,255,0.04);
}
.phone-note {
  font-size: 0.7rem;
  color: var(--white-20);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: -0.4rem;
}
.form-submit { margin-top: 0.5rem; width: 100%; }

.confirm-box {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(0,194,255,0.04);
  border: 0.5px solid var(--cyan-dim);
  border-radius: 12px;
}
.confirm-icon { font-size: 2.5rem; color: var(--cyan); margin-bottom: 1rem; }
.confirm-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.confirm-sub { font-size: 0.85rem; color: var(--white-40); line-height: 1.6; }

/* FOOTER */
footer {
  border-top: 0.5px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-logo);
  background: white;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  display: inline-block;
  text-decoration: none;
}
.footer-brand .ai { color: var(--cyan-light); }
.footer-copy { font-size: 0.72rem; color: var(--white-20); letter-spacing: 0.05em; line-height: 1.8; margin-top: 0.75rem; }
.footer-copy a { color: rgba(248,249,255,0.3); text-decoration: none; }

@media (max-width: 600px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .ai-letter { padding: 2rem 1.5rem; }
  section { padding: 4rem 1.25rem; }
  .hero-logo-anim { width: 340px; height: 340px; }
  .hero-logo-circle { width: 200px; height: 200px; }
  .hero-logo-img { width: 178px; height: 178px; }
  .orbit-ring:nth-child(1) { width: 250px; height: 250px; margin-left: -125px; margin-top: -125px; }
  .orbit-ring:nth-child(2) { width: 295px; height: 295px; margin-left: -147px; margin-top: -147px; }
  .orbit-ring:nth-child(3) { width: 340px; height: 340px; margin-left: -170px; margin-top: -170px; }
}

/* ASK CLAUDE SECTION */
.ask-section {
  background: var(--navy);
  border-top: 0.5px solid rgba(0,194,255,0.1);
  padding: 6rem 2rem;
}

.ask-box {
  margin-top: 2rem;
}

.ask-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ask-input {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(0,194,255,0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  resize: none;
  line-height: 1.6;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.ask-input::placeholder { color: var(--white-20); }
.ask-input:focus {
  border-color: rgba(0,194,255,0.5);
  background: rgba(0,194,255,0.04);
}

.ask-btn { align-self: flex-end; }

.ask-response {
  margin-top: 1.5rem;
  background: rgba(0,194,255,0.03);
  border: 0.5px solid var(--cyan-dim);
  border-radius: 12px;
  padding: 1.5rem;
  animation: fadeIn 0.4s ease;
}

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

.ask-response-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid rgba(0,194,255,0.1);
}

.ask-response-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--white-60);
  white-space: pre-wrap;
}

.ask-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ask-dots {
  display: flex;
  gap: 4px;
}
.ask-dots span {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dot-bounce 1.2s ease-in-out infinite;
}
.ask-dots span:nth-child(2) { animation-delay: 0.2s; }
.ask-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.ask-error { margin-top: 1rem; }

/* NAV BRAND SVG */
.nav-brand-svg {
  text-decoration: none;
  display: flex;
  align-items: center;
  background: white;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* HERO CONVERGENCE — plus grande */
.hero-convergence-lg {
  height: 2rem;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-convergence-lg .conv-word {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}
.hero-convergence-lg .conv-sep {
  font-size: 0.85rem;
}

/* HERO DESC */
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: rgba(248,249,255,0.55);
  max-width: 580px;
  text-align: center;
  margin: 0 auto 2.5rem;
}

/* QUESTIONS LIST */
.questions-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.question-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(0,194,255,0.12);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.question-item:hover {
  background: rgba(0,194,255,0.04);
  border-color: rgba(0,194,255,0.25);
}

.question-num {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 20px;
}

.question-text {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.5;
  flex: 1;
}

.copy-btn {
  flex-shrink: 0;
  background: none;
  border: 0.5px solid rgba(0,194,255,0.2);
  border-radius: 6px;
  color: var(--white-40);
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  font-size: 0.85rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.copy-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,194,255,0.06);
}

/* AI OPEN GRID */
.ai-open-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.ai-open-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(0,194,255,0.15);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
.ai-open-btn:hover {
  background: rgba(0,194,255,0.06);
  border-color: rgba(0,194,255,0.35);
  transform: translateY(-2px);
}

.ai-btn-logo { font-size: 1.2rem; color: var(--cyan); line-height: 1; }
.ai-btn-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.ai-btn-maker { font-size: 0.62rem; color: var(--white-40); text-transform: uppercase; letter-spacing: 0.08em; }
.ai-open-icon { font-size: 0.7rem; color: var(--white-20); position: absolute; top: 0.5rem; right: 0.5rem; }

/* ASK NOTE */
.ask-note {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: var(--white-20);
  text-align: center;
  letter-spacing: 0.03em;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .ai-open-grid { grid-template-columns: repeat(2, 1fr); }
  .question-item { padding: 0.85rem 1rem; gap: 0.75rem; }
  .question-text { font-size: 0.83rem; }
}

/* FREE AI SECTION */
.free-ai-section {
  background: var(--navy-mid);
  border-top: 0.5px solid rgba(0,194,255,0.1);
  padding: 6rem 2rem;
}

.ai-families {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.ai-family-card {
  border: 0.5px solid rgba(0,194,255,0.15);
  border-radius: 14px;
  padding: 1.75rem;
  background: rgba(255,255,255,0.02);
}

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

.ai-family-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.ai-family-badge.closed {
  background: rgba(255,255,255,0.06);
  color: var(--white-40);
  border: 0.5px solid rgba(255,255,255,0.1);
}
.ai-family-badge.open {
  background: rgba(0,194,255,0.1);
  color: var(--cyan);
  border: 0.5px solid var(--cyan-dim);
}

.ai-family-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.ai-family-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--white-40);
  margin-bottom: 1.25rem;
}

.ai-family-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ai-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  color: var(--white-40);
}
.ai-tag.open {
  background: rgba(0,194,255,0.06);
  border-color: var(--cyan-dim);
  color: var(--cyan);
}

/* AI OPEN BTN FREE VARIANT */
.ai-open-btn.free {
  border-color: rgba(0,194,255,0.2);
  background: rgba(0,194,255,0.04);
}
.ai-open-btn.free:hover {
  border-color: rgba(0,194,255,0.45);
  background: rgba(0,194,255,0.08);
}

/* AI NOTE BOX */
.ai-note-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(0,194,255,0.04);
  border: 0.5px solid rgba(0,194,255,0.15);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--white-40);
  line-height: 1.7;
}
.ai-note-box i {
  color: var(--cyan);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ai-note-box strong { color: var(--white-60); }

@media (max-width: 600px) {
  .ai-families { grid-template-columns: 1fr; }
}
