/*
  m.suivresasante.com — version mobile spéciale
  Ultra simple, rapide, lisible.
*/

:root {
  --bg: #020611;
  --card: rgba(13, 22, 42, .78);
  --card2: rgba(255, 255, 255, .055);
  --line: rgba(185, 223, 255, .16);
  --ink: #f7fbff;
  --muted: rgba(225, 234, 247, .72);
  --soft: rgba(225, 234, 247, .58);
  --cyan: #55dfff;
  --violet: #796aff;
  --green: #4cf0a9;
  --orange: #ffb15c;
  --danger: #ff6f91;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 5%, rgba(85, 223, 255, .16), transparent 28rem),
    radial-gradient(circle at 80% 18%, rgba(121, 106, 255, .20), transparent 30rem),
    radial-gradient(circle at 50% 90%, rgba(76, 240, 169, .10), transparent 24rem),
    linear-gradient(180deg, #020611 0%, #050817 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.mobile-shell {
  width: min(calc(100% - 28px), 520px);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 17, .78);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.topbar-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-fallback {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(85, 223, 255, .28);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(85, 223, 255, .22), rgba(121, 106, 255, .22));
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

.brand span {
  display: block;
  max-width: 190px;
  overflow: hidden;
  font-size: .98rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 223, 255, .25);
  border-radius: 999px;
  background: rgba(85, 223, 255, .09);
  color: #dffbff;
  padding: 0 12px;
  font-size: .72rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  padding: 34px 0 22px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(85, 223, 255, .75);
}

h1 {
  max-width: 11ch;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(2.72rem, 14vw, 4.25rem);
  font-weight: 950;
  line-height: .90;
  letter-spacing: -.06em;
}

.hero p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.main-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 0 18px;
  color: #fff;
  font-size: .95rem;
  font-weight: 950;
  text-align: center;
}

.btn-primary {
  border-color: rgba(85, 223, 255, .28);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #03111d;
  box-shadow: 0 18px 60px rgba(85, 223, 255, .18);
}

.btn-glass {
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.btn-small {
  min-height: 44px;
  border-radius: 14px;
  font-size: .84rem;
}

.notice {
  margin-top: 18px;
  border: 1px solid rgba(255, 177, 92, .25);
  border-radius: 18px;
  background: rgba(255, 177, 92, .08);
  color: #ffd9a8;
  padding: 14px;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.42;
}

.quick-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0 8px;
}

.quick-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(247,251,255,.84);
  font-size: .76rem;
  font-weight: 850;
}

.section {
  padding: 24px 0;
}

.section-head {
  margin-bottom: 14px;
}

.section-label {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h2 {
  margin-top: 8px;
  color: #fff;
  font-size: 1.62rem;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.section-text {
  margin-top: 8px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 620;
  line-height: 1.5;
}

.app-list {
  display: grid;
  gap: 14px;
}

.app-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 0%, rgba(85, 223, 255, .12), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(13, 22, 42, .74);
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
  padding: 18px;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(185, 223, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 223, 255, .04) 1px, transparent 1px);
  background-size: 52px 52px;
}

.app-card > * {
  position: relative;
}

.app-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(85, 223, 255, .22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(85, 223, 255, .12), rgba(121, 106, 255, .12));
  overflow: hidden;
}

.app-logo-box img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.app-logo-nova img {
  width: 46px;
  height: 46px;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(76, 240, 169, .22);
  border-radius: 999px;
  background: rgba(76, 240, 169, .09);
  color: #baffdf;
  padding: 0 10px;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status.soon {
  border-color: rgba(255, 177, 92, .28);
  background: rgba(255, 177, 92, .09);
  color: #ffd6a3;
}

.status.secret {
  border-color: rgba(121, 106, 255, .30);
  background: rgba(121, 106, 255, .10);
  color: #d6d0ff;
}

.app-card h3 {
  margin-top: 16px;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}

.app-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 620;
  line-height: 1.48;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  border: 1px solid rgba(185,223,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(247,251,255,.82);
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 850;
}

.app-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.feature-grid {
  display: grid;
  gap: 10px;
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  padding: 14px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(85, 223, 255, .20);
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(85, 223, 255, .08);
}

.feature b {
  display: block;
  color: #fff;
  font-size: .92rem;
  line-height: 1.2;
}

.feature span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: .80rem;
  font-weight: 620;
  line-height: 1.38;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)), rgba(13, 22, 42, .75);
  padding: 18px;
}

.contact-panel p {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 620;
  line-height: 1.5;
}

.footer {
  padding: 24px 0 36px;
  color: var(--soft);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(247,251,255,.82);
  font-weight: 850;
}

.mobile-bottom-cta {
  position: sticky;
  bottom: 0;
  z-index: 25;
  border-top: 1px solid var(--line);
  background: rgba(2,6,17,.78);
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.mobile-bottom-cta .mobile-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 370px) {
  .brand span {
    max-width: 150px;
  }

  .quick-nav {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.58rem;
  }

  .mobile-bottom-cta .mobile-shell {
    grid-template-columns: 1fr;
  }
}

.web-version-warning {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid rgba(255, 88, 116, .52);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 88, 116, .16), rgba(255, 88, 116, .06));
  box-shadow: 0 18px 60px rgba(255, 88, 116, .12);
  padding: 15px;
}

.web-version-warning strong {
  color: #ffd9df;
  font-size: .92rem;
  font-weight: 950;
  line-height: 1.2;
}

.web-version-warning span {
  color: rgba(255, 230, 234, .86);
  font-size: .84rem;
  font-weight: 720;
  line-height: 1.42;
}

.web-version-warning a {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 216, 222, .30);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 0 12px;
  font-size: .78rem;
  font-weight: 950;
}

.mobile-compare-card {
  overflow: hidden;
  border: 1px solid rgba(85, 223, 255, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(76, 240, 169, .12), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(13, 22, 42, .76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.compare-intro {
  padding: 18px;
  border-bottom: 1px solid rgba(185, 223, 255, .12);
}

.compare-intro span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(85, 223, 255, .20);
  border-radius: 999px;
  background: rgba(85, 223, 255, .08);
  color: #bdf6ff;
  padding: 0 10px;
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.compare-intro strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}

.compare-intro p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.42;
}

.compare-table {
  display: grid;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: .82fr .95fr 1.15fr;
}

.compare-head > div {
  border-bottom: 1px solid rgba(185, 223, 255, .12);
  color: rgba(247, 251, 255, .82);
  padding: 11px 9px;
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.compare-row > div {
  border-bottom: 1px solid rgba(185, 223, 255, .10);
  padding: 12px 9px;
  font-size: .74rem;
  font-weight: 850;
  line-height: 1.25;
}

.compare-row > div + div,
.compare-head > div + div {
  border-left: 1px solid rgba(185, 223, 255, .10);
}

.compare-label {
  color: #fff;
  background: rgba(255,255,255,.025);
}

.compare-bad {
  color: rgba(225, 234, 247, .62);
}

.compare-good {
  color: #caffdf;
  background: rgba(76, 240, 169, .055);
}

.compare-final .compare-good {
  color: #fff;
  background: linear-gradient(135deg, rgba(85, 223, 255, .16), rgba(76, 240, 169, .10));
}

.compare-cta {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(85, 223, 255, .055);
}

.compare-cta p {
  color: #e9f9ff;
  font-size: .84rem;
  font-weight: 850;
  line-height: 1.38;
}

@media (max-width: 390px) {
  .compare-head,
  .compare-row {
    grid-template-columns: .75fr .92fr 1.18fr;
  }

  .compare-head > div,
  .compare-row > div {
    padding-left: 7px;
    padding-right: 7px;
  }

  .compare-row > div {
    font-size: .68rem;
  }
}

