/* =========================================================
   SensiTips — Design system global
   ========================================================= */

/* -------- Variables (light mode) -------- */
:root{
  --bg: #f7f8fa;
  --bg-soft:#ffffff;
  --text:#1a1c20;
  --muted:#4d5563;

  --brand:#007aff;
  --brand-2:#00c896;

  --line:#d0d7e2;

  --radius:16px;
  --shadow:0 8px 20px rgba(0,0,0,.08);

  --header-solid:rgba(247,248,250,0.96);
  --header-fade:rgba(247,248,250,0);
  --header-border:rgba(208,215,226,0.9);
  --nav-hover-bg:rgba(15,20,32,0.06);

  --hero-card-bg:linear-gradient(180deg,#ffffff,#f3f4f8);
  --input-bg:#ffffff;
}

/* -------- Variables (dark mode) -------- */
:root.dark{
  --bg:#0b0d12;
  --bg-soft:#11141b;
  --text:#e9eef6;
  --muted:#a8b3c7;

  --brand:#7cc4ff;
  --brand-2:#7bffcc;

  --line:#243047;

  --shadow:0 10px 30px rgba(0,0,0,.35);

  --header-solid:rgba(11,13,18,0.96);
  --header-fade:rgba(11,13,18,0);
  --header-border:rgba(36,48,71,0.9);
  --nav-hover-bg:#0f1420;

  --hero-card-bg:linear-gradient(180deg,#0f1420,#0b0d12);
  --input-bg:#0f1420;
}

/* =========================================================
   Reset & bases
   ========================================================= */
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--text);
}

img{max-width:100%; display:block}
a{text-decoration:none; color:inherit}

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.grid{display:grid; gap:24px}

/* =========================================================
   Buttons
   ========================================================= */

.btn{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#051018;
  font-weight:600;
  box-shadow:var(--shadow);
  cursor:pointer;
  border:none;
}

.btn.alt{
  background:transparent;
  border:1px solid var(--line);
  box-shadow:none;
  color:var(--text);
}

/* =========================================================
   Navigation & Header
   ========================================================= */



header{
  position:sticky;
  top:0;
  z-index:10;
  background:linear-gradient(180deg, var(--header-solid), var(--header-solid) 60%, var(--header-fade));
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid var(--header-border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:17px;
}

.brand .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
}

nav a{
  padding:10px 12px;
  border-radius:10px;
  font-size:14px;
  opacity:.9;
}

nav a:hover{
  background:var(--nav-hover-bg);
}

    .spec-item .label{font-size:13px; color:var(--muted); margin-bottom:4px}
    .spec-item .val{font-weight:600; font-size:18px}
    .specs-grid{display:grid; gap:18px; grid-template-columns:repeat(auto-fit, minmax(220px,1fr))}

/* =========================================================
   Hero
   ========================================================= */

.hero{
  position:relative;
  padding:92px 0 56px;
  overflow:hidden;
}

.hero .backdrop{
  position:absolute;
  inset:-20% -10% auto -10%;
  height:70%;
  background:
    radial-gradient(700px 350px at 30% 10%, rgba(124,196,255,.18), transparent 70%),
    radial-gradient(700px 350px at 70% 0%, rgba(123,255,204,.14), transparent 70%);
  pointer-events:none;
}

.hero-card{
  background:var(--hero-card-bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

h1{
  font-size:clamp(34px, 5vw, 56px);
  line-height:1.05;
  margin:0;
}

p.lead{
  font-size:clamp(16px, 2.2vw, 20px);
  color:var(--muted);
  margin-top:14px;
}

/* =========================================================
   Stats
   ========================================================= */

.stats{
  margin-top:26px;
  display:grid;
  gap:14px;
  grid-template-columns:repeat(auto-fit, minmax(160px,1fr));
}

.stat{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
}

.stat .k{font-size:22px; font-weight:700}
.stat .s{font-size:12px; color:var(--muted)}

/* =========================================================
   Sections
   ========================================================= */

section{padding:56px 0}

h2{
  font-size:clamp(50px, 3.4vw, 34px);
  margin:0 0 10px;
}

p.section-lead{
  color:var(--muted);
  margin:0 0 22px;
}

/* =========================================================
   Cards
   ========================================================= */

.card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
}

.apps{
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
}

.apps h3{
  margin:0 0 6px;
  font-size:25px;
}

.apps p{
  margin:0;
  color:var(--muted);
}

.actions{margin-top:14px}

/* =========================================================
   Logos / Partenaires
   ========================================================= */

.logos{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.logos .pill{
  border:1px solid var(--line);
  color:var(--muted);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
}

/* =========================================================
   Contact
   ========================================================= */

.note{
  color:var(--muted);
  font-size:13px;
}

/* =========================================================
   Footer
   ========================================================= */

footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:var(--muted);
  font-size:14px;
  margin-top:12px;
}

.kbd{
  border:1px solid var(--line);
  border-bottom-width:2px;
  padding:2px 6px;
  border-radius:6px;
  font-size:12px;
  color:var(--muted);
}

/* Cacher le bouton de thème sur les petits écrans */
@media (max-width: 600px) {
  .theme-toggle {
    display: none;
  }
}