/* Killmoji — site vitrine + pages légales. DA « sticker-bomb bonbon ». */
:root {
  --ink: #111111;
  --pink: #FF4FA3;
  --gold: #FFD23F;
  --teal: #3FD6C8;
  --amber: #FF9F45;
  --purple: #7A2FF2;
  --red: #FF2E4E;
  --green: #3FD68A;
  --cream: #FFF7EC;
  --muted: #6B6470;
  --paper: #FFFFFF;
  --border: 3px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .display { font-family: 'Fredoka', 'Nunito', sans-serif; }
a { color: var(--purple); text-decoration: none; font-weight: 800; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 20;
  background: var(--paper); border-bottom: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 38px; height: 38px; border: 2.5px solid var(--ink); border-radius: 9px; }
.brand b { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: .3px; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 800; font-size: 15px; }
@media (max-width: 620px) { .nav-links { gap: 13px; font-size: 13px; } .nav-links a { font-size: 13px; } }

/* ── Stickers / boutons ── */
.sticker {
  display: inline-block; background: var(--pink); color: #fff;
  font-family: 'Fredoka', sans-serif; font-weight: 700;
  border: var(--border); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px 18px; line-height: 1.1;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 600;
  border: var(--border); border-radius: 14px; box-shadow: var(--shadow);
  padding: 12px 20px; font-size: 16px; cursor: pointer; transition: transform .08s;
}
.btn:hover { text-decoration: none; transform: translate(-1px,-1px); }
.btn.pink { background: var(--pink); }
.btn.ghost { background: var(--paper); color: var(--ink); }

/* ── Hero ── */
.hero { padding: 54px 0 40px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.kicker {
  display: inline-block; background: var(--gold); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: 20px; box-shadow: 3px 3px 0 var(--ink);
  padding: 5px 14px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 14px;
  transform: rotate(-2deg); margin-bottom: 20px;
}
.hero h1 { font-size: clamp(40px, 7vw, 74px); line-height: .95; letter-spacing: -1px; }
.hero h1 .l1 { color: var(--pink); -webkit-text-stroke: 2px var(--ink); }
.hero h1 .l2 { color: var(--ink); }
.hero .lede { font-size: 19px; color: var(--muted); margin: 22px 0 26px; max-width: 30ch; }
@media (max-width: 820px) { .hero .lede { margin-left: auto; margin-right: auto; } }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 820px) { .cta-row { justify-content: center; } }
.soon { font-size: 13px; color: var(--muted); margin-top: 14px; font-weight: 700; }
.hero-moji { justify-self: center; }
.hero-moji img { width: min(340px, 78vw); filter: drop-shadow(6px 8px 0 rgba(17,17,17,.15)); animation: bob 4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }

/* ── Sections ── */
section { padding: 46px 0; }
.section-title { font-size: clamp(28px, 4.5vw, 40px); text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--muted); max-width: 46ch; margin: 0 auto 34px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 20px;
}
.step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; background: var(--teal);
  border: 2.5px solid var(--ink); font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 18px;
  margin-bottom: 12px;
}
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 15px; color: var(--muted); }

/* ── Screenshots ── */
.shots { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.shots figure {
  width: 240px; border: var(--border); border-radius: 26px; box-shadow: var(--shadow);
  overflow: hidden; background: var(--ink);
}
.shots figure:nth-child(1) { transform: rotate(-2deg); }
.shots figure:nth-child(3) { transform: rotate(2deg); }

/* ── Garde-fous ── */
.guard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 820px; margin: 0 auto; }
@media (max-width: 620px) { .guard-grid { grid-template-columns: 1fr; } }
.guard { display: flex; gap: 14px; align-items: flex-start; }
.guard .ic { font-size: 26px; line-height: 1; flex: none; }
.guard h3 { font-size: 17px; margin-bottom: 3px; }
.guard p { font-size: 14.5px; color: var(--muted); }
.band-guard { background: var(--purple); color: #fff; }
.band-guard .section-title, .band-guard .section-sub { color: #fff; }
.band-guard .guard p { color: #efe6ff; }

/* ── Footer ── */
footer { background: var(--ink); color: #fff; padding: 40px 0 30px; }
footer a { color: var(--gold); }
.foot-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-note { color: #9a93a6; font-size: 13px; margin-top: 22px; max-width: 60ch; }

/* ── Pages légales ── */
.legal { padding: 40px 0 70px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.legal h2 {
  font-size: 22px; margin: 34px 0 10px; padding-top: 14px; border-top: 2.5px dashed var(--ink);
}
.legal h3 { font-size: 18px; margin: 20px 0 6px; }
.legal p, .legal li { font-size: 16px; color: #2a2530; font-weight: 600; }
.legal p { margin: 10px 0; }
.legal ul, .legal ol { margin: 10px 0 10px 22px; }
.legal li { margin: 6px 0; }
.legal strong { color: var(--ink); }
.legal .callout {
  background: var(--cream); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px 18px; margin: 22px 0;
}
.legal .callout p { margin: 6px 0; }
.back-home { display: inline-block; margin-bottom: 24px; font-weight: 800; }
