:root {
  --blue: #3E76D6;
  --blue-dark: #2F5FB3;
  --blue-soft: #E8EFFB;
  --orange: #F27A3A;
  --pink: #EA5A94;
  --green: #3DAA6A;
  --ink: #1F2937;
  --ink-soft: #4B5563;
  --muted: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #F6F8FC;
  --line: #E5E9F0;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

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

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.65em 1.4em;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-big { font-size: 1.15rem; padding: 0.85em 1.8em; }
.btn-small { font-size: 0.95rem; padding: 0.5em 1.2em; }

/* ---- Barre du haut ---- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
}
.brand > img:first-child { border-radius: 10px; }
.brand-wordmark { width: auto; height: 30px; display: block; }
.topbar nav { display: flex; gap: 1.5rem; }
.topbar nav a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.topbar nav a:hover { color: var(--blue); }

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem) 3rem;
}
.eyebrow {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 40rem; }
.cta { margin: 1.8rem 0 1.4rem; }
.cta-note { margin-top: 0.8rem; color: var(--muted); font-size: 0.95rem; }
.badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badges li {
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3em 0.9em;
  border-radius: 999px;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.55rem;
}
.hero-points li { position: relative; padding-left: 1.85em; color: var(--ink-soft); }
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 1.25em;
  height: 1.25em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%233E76D6'/%3E%3Cpath d='m7 12.5 3.2 3.2L17 9' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero-points strong { color: var(--ink); }
.hero-visual { display: flex; justify-content: center; }
.lily-card {
  background: linear-gradient(160deg, #DCE7FA 0%, var(--blue-soft) 100%);
  border-radius: 32px;
  padding: 1.5rem 1.5rem 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lily-card img { width: 300px; }

/* ---- Sections ---- */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 3rem);
}
.section-alt {
  max-width: none;
  background: var(--bg-alt);
}
.section-alt > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.section-lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 44rem; margin-bottom: 2rem; }

/* ---- Outils ---- */
.tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
.tool {
  border-radius: var(--radius);
  padding: 1.6rem;
  color: #fff;
  box-shadow: var(--shadow);
}
.tool-transcription { background: var(--orange); }
.tool-exports { background: var(--pink); }
.tool-email { background: var(--green); }
.tool h3 { color: #fff; margin-top: 0.9rem; }
.tool p { margin-bottom: 0.6em; }
.tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
}
.tool-icon svg { width: 30px; height: 30px; }
.tool-detail { font-size: 0.9rem; opacity: 0.85; margin: 0; }

.chat-strip {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}
.chat-strip h3 { color: #fff; margin-bottom: 0.3em; }
.chat-strip p { margin: 0; }
.chat-strip-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
}
.chat-strip-icon svg { width: 26px; height: 26px; }

/* ---- Confidentialité ---- */
.privacy-head { text-align: center; margin-bottom: 2.4rem; }
.privacy-head .section-lead { margin-left: auto; margin-right: auto; margin-bottom: 0; }
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.privacy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s, border-color 0.15s;
}
.privacy-card:hover { transform: translateY(-2px); border-color: #C9D7F0; }
.privacy-card-wide {
  grid-column: span 2;
  background: linear-gradient(160deg, #DCE7FA 0%, var(--blue-soft) 100%);
  border-color: transparent;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.3rem;
  align-items: start;
}
.privacy-card-wide h3 { grid-column: 2; margin-top: 0.2rem; font-size: 1.45rem; }
.privacy-card-wide p { grid-column: 2; }
.privacy-card-wide .privacy-icon { grid-row: 1 / span 2; width: 64px; height: 64px; }
.privacy-card-wide .privacy-icon svg { width: 34px; height: 34px; }
.privacy-card h3 { color: var(--ink); font-size: 1.15rem; margin: 0.9rem 0 0.4rem; }
.privacy-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.privacy-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
}
.privacy-icon svg { width: 26px; height: 26px; }
.icon-white { background: var(--blue); }
.icon-orange { background: var(--orange); }
.icon-pink { background: var(--pink); }
.icon-green { background: var(--green); }


/* ---- Prix ---- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.price-card {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.price { margin: 0; }
.amount { font-size: 3rem; font-weight: 800; color: var(--blue); }
.per { font-size: 1.2rem; color: var(--ink-soft); font-weight: 700; }
.price-sub { color: var(--muted); margin-bottom: 1.4rem; }
.checks { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 0.6rem; }
.checks li { padding-left: 1.8em; position: relative; }
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.15em;
  height: 1.15em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%233DAA6A'/%3E%3Cpath d='m7 12.5 3.2 3.2L17 9' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; align-self: center; }
.timeline li {
  position: relative;
  padding-left: 1.6rem;
  border-left: 3px solid var(--blue-soft);
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 0.45em;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
}
.timeline strong { display: block; color: var(--blue); }
.timeline span { color: var(--ink-soft); }

/* ---- Installer ---- */
.install {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.steps { padding-left: 0; margin: 0 0 1.2rem; list-style: none; counter-reset: step; display: grid; gap: 1.1rem; }
.steps li {
  position: relative;
  padding-left: 3.2rem;
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.steps strong { display: block; margin-bottom: 0.15em; }
.steps span { color: var(--ink-soft); }
.download-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.download-box img { margin: 0 auto 0.8rem; border-radius: 18px; }
.download-title { font-weight: 800; font-size: 1.2rem; margin: 0; }
.download-meta { color: var(--muted); margin: 0.2rem 0 1.2rem; }
.download-small { color: var(--muted); font-size: 0.9rem; margin: 1rem 0 0; }

/* ---- Liste d'attente macOS / Linux ---- */
.waitlist {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem 2rem;
  align-items: center;
}
.waitlist-text h3 { margin: 0 0 0.3rem; font-size: 1.15rem; }
.waitlist-text p { margin: 0; color: var(--ink-soft); }
.waitlist-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.waitlist-form input,
.waitlist-form select {
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  min-width: 0;
}
.waitlist-form input { flex: 1 1 12rem; }
.waitlist-form input:focus, .waitlist-form select:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.waitlist-form .btn { padding: 0.7rem 1.2rem; }
.waitlist-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 0.85rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- Exemple avant / après ---- */
.example-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.5rem;
  align-items: start;
}
.example-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
}
.example-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--ink);
}
.example-label svg { width: 20px; height: 20px; color: var(--blue); flex: none; }
.example-label span { font-weight: 400; color: var(--muted); font-size: 0.9rem; }
.example-before { background: var(--bg-alt); }
.example-before .example-label svg { color: var(--orange); }
.example-speech {
  margin: 0;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
}
.example-after h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--blue-dark);
}
.example-after p { margin: 0 0 1.1rem; line-height: 1.65; }
.example-after p:last-child { margin-bottom: 0; }
.example-note { color: var(--ink-soft); margin: 1.5rem 0 0; max-width: 44rem; }

/* ---- À propos ---- */
.about-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2.5rem;
}
.about-figure { margin: 0; text-align: center; }
.about-figure img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 0.9rem;
  box-shadow: var(--shadow);
  border: 5px solid #fff;
}
.about-figure figcaption strong { display: block; font-size: 1.05rem; }
.about-figure figcaption span { color: var(--muted); font-size: 0.95rem; }
.about-text h2 { margin-bottom: 0.6em; }
.about-text p { color: var(--ink-soft); }
.about-text p:last-child { margin-bottom: 0; }

/* ---- Pied ---- */
.footer { border-top: 1px solid var(--line); background: var(--bg-alt); }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 3rem);
}
.footer-inner p:first-child { display: flex; align-items: center; gap: 0.5rem; }
.footer-inner img { border-radius: 6px; }
.footer-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-inner a { color: var(--blue-dark); }

/* ---- Page Mentions légales ---- */
.legal { max-width: 760px; margin: 0 auto; padding: 3rem clamp(1rem, 4vw, 3rem) 4rem; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin: 0 0 0.4rem; }
.legal .legal-updated { color: var(--muted); margin: 0 0 2rem; }
.legal h2 { font-size: 1.35rem; margin: 2.4rem 0 0.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 0.4rem; }
.legal p, .legal li { line-height: 1.7; }
.legal ul { padding-left: 1.2rem; }
.legal .legal-toc { background: var(--bg-alt); border-radius: var(--radius); padding: 1.2rem 1.6rem; margin: 0 0 1rem; }
.legal .legal-toc ol { margin: 0.4rem 0 0; padding-left: 1.2rem; }
.legal .legal-toc li { margin: 0.2rem 0; }
.legal-table { width: 100%; border-collapse: collapse; margin: 0.6rem 0 1rem; font-size: 0.95rem; }
.legal-table th, .legal-table td { text-align: left; vertical-align: top; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line); }
.legal-table th { color: var(--ink-soft); font-weight: 700; width: 34%; }
.legal-todo { background: #FFF4E5; color: #7A4A00; border-radius: 6px; padding: 0.05em 0.35em; font-weight: 700; }

/* ---- Écrans étroits ---- */
@media (max-width: 860px) {
  .topbar nav { display: none; }
  .hero, .pricing, .install, .about-card { grid-template-columns: 1fr; gap: 2rem; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-card-wide { grid-column: auto; grid-template-columns: 1fr; }
  .privacy-card-wide .privacy-icon { grid-row: auto; }
  .privacy-card-wide h3, .privacy-card-wide p { grid-column: auto; }
  .about-card { text-align: center; padding: 2rem 1.4rem; }
  .hero-visual { order: -1; }
  .lily-card img { width: 220px; }
  .tools { grid-template-columns: 1fr; }
  .btn-big { width: 100%; justify-content: center; }
  .example-grid { grid-template-columns: 1fr; }
  .waitlist { grid-template-columns: 1fr; padding: 1.4rem 1.2rem; }
  .waitlist-form .btn { width: 100%; justify-content: center; }
}
