/* Keypeur landing (EN + FR) */
:root {
  --accent: #c2683c; --accent-soft: rgba(194, 104, 60, 0.14);
  --fg: #1c1a18; --muted: #6f675d; --bg: #ffffff;
  --hair: rgba(28, 26, 24, 0.08); --card: #ffffff;
  --shadow: 0 32px 96px -28px rgba(30, 20, 12, 0.22);
  --shadow-soft: 0 12px 48px rgba(30, 20, 12, 0.09);
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg);
       font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
       -webkit-font-smoothing: antialiased; color-scheme: light; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header { display: flex; align-items: center; gap: 14px; padding: 28px 0 0; }
header img { width: 44px; height: 44px; border-radius: 10px; }
header .name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.lang { margin-left: auto; display: flex; gap: 2px; border: 1px solid var(--hair);
        border-radius: 999px; overflow: hidden; }
.lang a { color: var(--muted); font-size: 13px; padding: 4px 12px; text-decoration: none; }
.lang a[aria-current="true"] { background: var(--fg); color: var(--bg); }

.kicker { display: block; font: 600 12px/1 var(--mono); letter-spacing: 0.22em;
          text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }

.hero { padding: 88px 0 0; }
h1 { font-size: clamp(38px, 5.8vw, 64px); line-height: 1.06; font-weight: 800;
     letter-spacing: -0.04em; margin-bottom: 26px; text-wrap: balance; }
.sub { color: var(--muted); font-size: clamp(17px, 2.2vw, 21px); max-width: 33em;
       margin-bottom: 36px; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
           margin-bottom: 16px; }
.btn { display: inline-block; border-radius: 999px; padding: 15px 30px;
       font-size: 16px; font-weight: 650; text-decoration: none;
       transition: transform 0.15s ease, opacity 0.15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { opacity: 0.9; }
.btn-ghost { border: 1px solid var(--hair); color: var(--fg); }
.btn-ghost:hover { background: var(--card); }
.soon { display: block; font: 500 12px/1.5 var(--mono); letter-spacing: 0.06em;
        color: var(--muted); margin-bottom: 8px; }
.hero .shot { margin-top: 48px; position: relative; z-index: 1; }

.shot { width: 100%; height: auto; display: block; border-radius: 24px;
        box-shadow: var(--shadow); }

.band { background: linear-gradient(105deg, #b9512c, #d96f3d 55%, #ed8a56); color: #fff; margin-top: -80px;
        padding: 104px 0 30px; }
.band + * { margin-top: 0; }
.band .wrap { display: flex; flex-wrap: wrap; justify-content: center;
              gap: 12px 44px; }
.band span { font: 600 13px/1.6 var(--mono); letter-spacing: 0.16em;
             text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.band span::before { content: ""; width: 6px; height: 6px; border-radius: 50%;
                     background: #fff; }

section { padding: 104px 0 0; }
h2 { font-size: clamp(32px, 4.8vw, 54px); letter-spacing: -0.035em; font-weight: 800;
     line-height: 1.08; margin-bottom: 16px; text-wrap: balance; }
.lede { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 38em;
        margin-bottom: 8px; }

figure { margin: 72px 0 0; }
.fig-note { display: flex; gap: 18px; align-items: baseline; max-width: 52em;
            margin-bottom: 22px; }
.fig-note .num { font: 700 14px/1 var(--mono); color: var(--accent);
                 letter-spacing: 0.08em; flex: none; }
.fig-note p { color: var(--muted); font-size: 16px; }
.fig-note b { color: var(--fg); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 14px; margin-top: 44px; }
.card { background: var(--card); border-radius: 18px; padding: 24px 22px;
        box-shadow: var(--shadow-soft);
        transition: transform 0.18s ease, box-shadow 0.18s ease; }
.card:hover { transform: translateY(-3px);
              box-shadow: 0 20px 64px rgba(30, 20, 12, 0.14); }
.card b { display: block; font-size: 17px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14.5px; }

.security { color: var(--fg); margin-top: 104px; padding: 0 0 8px; }
.security section, .security .wrap > * { padding-top: 0; }
.warn { border-left: 3px solid var(--accent); background: var(--accent-soft);
        border-radius: 0 12px 12px 0; padding: 16px 20px; font-size: 15px;
        color: var(--fg); }
/* Re-assert after the reset above (.security .wrap > * zeroes padding-top). */
.security .warn { padding: 16px 20px; }
.warn b { color: var(--fg); }

.final { text-align: center; padding: 72px 0 110px; }
.final h2 { margin-bottom: 12px; }
.final p { color: var(--muted); margin-bottom: 30px; }
.final .cta-row { justify-content: center; margin-bottom: 0; }

footer { border-top: 1px solid var(--hair); padding: 22px 0 60px; color: var(--muted);
         font-size: 14px; display: flex; flex-wrap: wrap; gap: 8px 22px; }
