/* =====================================================================
   Kiovyse — noir clair, bleu au survol.

   Contrastes mesurés sur le fond #16181c :
     ink 15,3:1 · ink-2 7,4:1 · ink-3 5,2:1 · bleu 6,5:1
   Le bleu passe partout, texte compris.
   ===================================================================== */

:root {
  --bg:      #16181c;   /* noir clair */
  --card:    #1c1f25;
  --raised:  #23262d;   /* survol des cartes */
  --line:    #262a30;
  --line-2:  #343941;

  --ink:   #eceef1;
  --ink-2: #a2a8b3;
  --ink-3: #858b96;

  --blue:      #4d9fff;
  --blue-dim:  #3d8bfd;
  --blue-soft: rgba(77, 159, 255, .10);

  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, sans-serif;

  --text: 700px;
  --wide: 1000px;
  --ease: 240ms cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; line-height: 1.15; }
h1 { font-size: clamp(32px, 5.6vw, 52px); }
h2 { font-size: clamp(27px, 4.2vw, 38px); }
h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 21px; letter-spacing: -.01em; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 14px; top: -60px; z-index: 60;
  padding: 12px 20px; background: var(--blue); color: #08131f;
  border-radius: 0 0 10px 10px; font-weight: 600;
  transition: top var(--ease);
}
.skip:focus { top: 0; }

/* ---- Barre du haut ------------------------------------------------------ */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(22, 24, 28, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.mark {
  font-family: var(--serif); font-size: 21px; letter-spacing: -.01em;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color var(--ease);
}
.mark:hover { color: var(--blue); }
.topbar .link {
  min-height: 44px; display: inline-flex; align-items: center;
  font-size: 15px; color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  transition: color var(--ease), border-color var(--ease);
}
.topbar .link:hover { color: var(--blue); border-bottom-color: var(--blue); }

/* ---- Boutons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 30px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 16px; font-weight: 600;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.btn:hover { background: var(--blue); color: #08131f; transform: translateY(-1px); }
.btn-quiet {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-quiet:hover { background: var(--blue-soft); border-color: var(--blue); color: var(--blue); }

/* ---- Rythme --------------------------------------------------------------- */
.section {
  max-width: var(--text);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 96px) 28px;
}
.section.proof { max-width: var(--wide); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section > h2 { margin-bottom: 20px; }
.intro { color: var(--ink-2); max-width: 62ch; line-height: 1.75; }
.intro b { color: var(--ink); font-weight: 600; }

/* Mention de consentement : visible avant les chiffres, pas noyée en bas
   de page. Même registre que le badge "Verified on OnlyFans". */
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(77, 159, 255, .22);
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--ink-2);
  font-size: 14px; line-height: 1.6;
  max-width: 62ch;
}
.consent svg {
  width: 16px; height: 16px; flex: 0 0 auto;
  margin-top: 2px;
  fill: var(--blue);
}

/* ---- Ouverture ------------------------------------------------------------- */
.hero {
  max-width: var(--text);
  margin: 0 auto;
  padding: clamp(52px, 9vw, 100px) 28px clamp(40px, 6vw, 60px);
}
.hero h1 { margin-bottom: 28px; }
.lede { color: var(--ink-2); font-size: clamp(17px, 2.1vw, 19px); line-height: 1.75; max-width: 52ch; }
.hero-cta { margin-top: 40px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hint { font-size: 14.5px; color: var(--ink-3); }

/* ---- Présentation ---------------------------------------------------------- */
.intro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.intro-me h2 { font-size: clamp(30px, 4.6vw, 44px); margin: 0; }
.intro-photo {
  width: clamp(52px, 9vw, 72px);
  height: clamp(52px, 9vw, 72px);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-2);
  flex: 0 0 auto;
}
.prose { display: grid; gap: 20px; }
.prose p { color: var(--ink-2); font-size: 16.5px; line-height: 1.8; }
.prose b { color: var(--ink); font-weight: 600; }

.me-stats {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.me-stats > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 20px;
  transition: background var(--ease), border-color var(--ease);
}
.me-stats > div:hover { background: var(--raised); border-color: var(--blue); }
.me-stats b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 400; letter-spacing: -.02em; line-height: 1;
}
.me-stats span {
  display: block; margin-top: 12px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
}

/* ---- Ce qui reste à elle ----------------------------------------------------
   Placé très haut : c'est la question qu'elle se pose avant les autres. */
.cards { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  transition: background var(--ease), border-color var(--ease);
}
.card:hover { background: var(--raised); border-color: var(--blue); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }

/* ---- Deux métiers ------------------------------------------------------------ */
.split { margin-top: 44px; display: grid; gap: 44px; }
.split .num {
  display: block;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .18em; color: var(--blue);
  margin-bottom: 12px;
}
.split h3 { margin-bottom: 12px; font-size: 23px; }
.split p { color: var(--ink-2); line-height: 1.8; max-width: 62ch; }

/* ---- Constat mis en avant ------------------------------------------------------ */
.insight {
  margin-top: 44px;
  background: var(--blue-soft);
  border: 1px solid rgba(77, 159, 255, .26);
  border-radius: 16px;
  padding: 30px 28px;
}
.insight-figure {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.insight-figure b { color: var(--blue); font-weight: 400; }
.insight p { color: var(--ink-2); line-height: 1.75; max-width: 58ch; }
.insight p b { color: var(--ink); font-weight: 600; }
.insight-source { margin-top: 16px !important; font-size: 13px; color: var(--ink-3) !important; }

/* ---- Graphique ---------------------------------------------------------------
   Hauteur pilotée par une variable : il tient toujours dans l'écran, sans
   défilement interne. */
.graph {
  --h: 190px;
  margin: 40px 0 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px 20px;
}
.plot-grid { display: grid; grid-template-columns: 34px 1fr; gap: 0 10px; }
.ticks {
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end;
  height: var(--h); font-size: 11px; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}
.plot { position: relative; min-width: 0; }
.rules {
  position: absolute; inset: 0 0 auto; height: var(--h);
  display: flex; flex-direction: column; justify-content: space-between; pointer-events: none;
}
.rules span { height: 1px; background: var(--line); }
.rules span:last-child { background: var(--line-2); }

.curve { display: block; width: 100%; height: var(--h); }
.curve .line {
  fill: none; stroke: var(--blue); stroke-width: 2;
  stroke-linejoin: round; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.curve .fill { fill: var(--blue); opacity: .10; }

html.anim .chart .curve { clip-path: inset(0 100% 0 0); }
html.anim .chart.seen .curve { animation: draw 1700ms cubic-bezier(.2, .8, .3, 1) 200ms forwards; }
@keyframes draw { to { clip-path: inset(0 0 0 0); } }

.hits { position: absolute; inset: 0 0 auto; height: var(--h); display: flex; }
.hit { flex: 1 1 0; min-width: 0; border-radius: 8px; transition: background var(--ease); }
.hit:hover, .hit:focus-visible { background: var(--blue-soft); }

.dot {
  position: absolute; right: 0;
  width: 9px; height: 9px; margin: -4.5px -4.5px 0 0;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--card);
}
html.anim .chart .dot { opacity: 0; transition: opacity 400ms ease 1800ms; }
html.anim .chart.seen .dot { opacity: 1; }

.months { display: flex; margin-top: 12px; }
.months span {
  flex: 1 1 0; min-width: 0; text-align: center;
  font-size: 11px; color: var(--ink-3); overflow: hidden;
}
.graph figcaption {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}

/* ---- Totaux ------------------------------------------------------------------- */
.totals {
  margin-top: 26px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.totals > div { background: var(--card); padding: 22px 20px; transition: background var(--ease); }
.totals > div:hover { background: var(--raised); }
.totals b {
  display: block;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600; letter-spacing: -.025em; line-height: 1;
}
.totals span {
  display: block; margin-top: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}

.caveat {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--line-2);
  color: var(--ink-3);
  font-size: 15px; line-height: 1.75; max-width: 62ch;
}

/* ---- Captures d'écran ---------------------------------------------------------- */
.shots { margin-top: 44px; }
.shots-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.shots-title { font-size: 19px; margin: 0; }

/* Badge honnête : dit que les chiffres viennent de l'interface OnlyFans
   elle-même, jamais qu'il existe un partenariat ou une certification
   officielle — OnlyFans n'en délivre pas aux agences tierces. */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(77, 159, 255, .3);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px; font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.badge svg { width: 13px; height: 13px; fill: currentColor; flex: 0 0 auto; }
.shots-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.shots-grid figure { margin: 0; }
.shots-grid img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  cursor: zoom-in;
  transition: transform var(--ease), border-color var(--ease);
}
.shots-grid img:hover { transform: translateY(-3px); border-color: var(--blue); }
.shots-grid figcaption { margin-top: 10px; font-size: 13px; color: var(--ink-3); line-height: 1.6; }
.shots-grid figcaption b { color: var(--ink); font-weight: 600; }
.shots-note { margin-top: 18px; font-size: 13px; color: var(--ink-3); }

#lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(8, 10, 13, .88);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
  cursor: zoom-out;
}
#lightbox.on { opacity: 1; pointer-events: auto; }
#lightbox img { max-width: min(1100px, 100%); max-height: 88vh; border-radius: 12px; }

/* ---- Témoignages ---------------------------------------------------------------- */
.quotes {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px;
}
.quote {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  transition: background var(--ease), border-color var(--ease);
}
.quote:hover { background: var(--raised); border-color: var(--blue); }
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px; line-height: 1.55; letter-spacing: -.01em;
}
.quote blockquote::before { content: "“"; color: var(--blue); margin-right: 2px; }
.quote blockquote::after  { content: "”"; color: var(--blue); margin-left: 2px; }
.quote figcaption { margin-top: 16px; font-size: 13.5px; color: var(--ink-3); }

/* Captures de conversation : même trame que .shots, sans le titre ni la
   note de bas — les guillemets textuels sont juste au-dessus ou remplacés. */
.dms { margin-top: 16px; }
.dms .shots-grid img { cursor: zoom-in; }

/* ---- Étapes ---------------------------------------------------------------------- */
.steps { list-style: none; margin: 40px 0 0; padding: 0; }
.steps li {
  display: grid; grid-template-columns: 54px 1fr; gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  transition: padding-left var(--ease);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li:hover { padding-left: 8px; }
.steps li:hover > span { color: var(--blue); }
.steps > li > span {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .16em; color: var(--ink-3);
  padding-top: 6px;
  transition: color var(--ease);
}
.steps h3 { margin-bottom: 7px; }
.steps p { color: var(--ink-2); font-size: 16px; line-height: 1.75; }

/* ---- Questions -------------------------------------------------------------------- */
.faq { margin-top: 36px; display: grid; gap: 10px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color var(--ease);
}
.faq details:hover, .faq details[open] { border-color: var(--blue); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center;
  min-height: 62px;
  padding: 14px 54px 14px 24px;
  font-family: var(--serif); font-size: 18px;
  position: relative;
  transition: color var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq summary::after {
  content: ""; position: absolute; right: 26px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(225deg); }
.faq p { padding: 0 26px 22px; color: var(--ink-2); font-size: 16px; line-height: 1.75; }

/* ---- Contact ----------------------------------------------------------------------- */
.talk { text-align: center; border-top: 1px solid var(--line); }
.talk h2 { margin-bottom: 18px; }
.talk p { color: var(--ink-2); max-width: 48ch; margin: 0 auto; line-height: 1.75; }
.talk-links { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Pied --------------------------------------------------------------------------- */
.foot {
  max-width: var(--text); margin: 0 auto;
  padding: 30px 28px 56px;
  border-top: 1px solid var(--line);
  display: flex; gap: 6px 24px; flex-wrap: wrap; align-items: baseline;
  font-size: 14px; color: var(--ink-3);
}
.mark-sm { font-family: var(--serif); font-size: 17px; color: var(--ink); }
.foot .note { flex-basis: 100%; margin-top: 16px; font-size: 12.5px; line-height: 1.7; max-width: 72ch; }

/* ---- Infobulle ------------------------------------------------------------------------ */
#tip {
  position: fixed; z-index: 100; pointer-events: none; opacity: 0;
  transform: translate(-50%, 0);
  background: var(--raised); color: var(--ink);
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px; line-height: 1.45;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
  transition: opacity var(--ease);
}
#tip.on { opacity: 1; }
#tip span {
  display: block; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 3px;
}
#tip b { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--blue); }

/* ---- Apparition au défilement -----------------------------------------------------------
   Conditionnée à `anim` : sans JavaScript, tout reste lisible. */
html.anim .rise { opacity: 0; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .3, 1); }
html.anim .rise.seen { opacity: 1; transform: none; }

/* ---- Adaptatif ---------------------------------------------------------------------------- */
@media (max-width: 820px) {
  .cards, .me-stats, .totals { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar { padding: 12px 18px; }
  .hero, .section, .foot { padding-left: 18px; padding-right: 18px; }
  .hero-cta .btn, .talk-links .btn { width: 100%; }
  .steps li { grid-template-columns: 1fr; gap: 8px; }
  /* Le graphique tient dans la largeur : aucun défilement horizontal */
  .graph { --h: 150px; padding: 18px 12px 14px; border-radius: 14px; }
  .plot-grid { grid-template-columns: 26px 1fr; gap: 0 8px; }
  .ticks, .months span { font-size: 10px; }
  .faq summary { padding-right: 46px; font-size: 17px; }
}

/* ---- Mouvement réduit ------------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rise { opacity: 1 !important; transform: none !important; }
  .curve { clip-path: none !important; }
  .dot { opacity: 1 !important; }
}
