/* Site vitrine HotspotVault (www) : généré depuis la page d'aperçu. */
:root {
  color-scheme: dark;
  --night: #0a111c;
  --night-2: #0e1826;
  --panel: #132033;
  --panel-2: #182940;
  --line: #223550;
  --text: #e6e1d9;
  --muted: #9aa7b8;
  --orange: #e0913f;
  --orange-2: #f0a55a;
  --steel: #3a6a93;
  --ok: #62c98c;
  --display: Montserrat, 'Segoe UI', Arial, sans-serif;
  --body: Manrope, system-ui, -apple-system, 'Segoe UI', sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font: 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.gutter {
  padding-inline: clamp(16px, 4vw, 40px);
}
.max {
  max-width: 1160px;
  margin: 0 auto;
}
h1,
h2,
h3 {
  font-family: var(--display);
  text-wrap: balance;
  margin: 0;
}
.eyebrow {
  font: 700 12px/1 var(--body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 15px/1 var(--body);
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 24px;
  border: 1.5px solid transparent;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.btn:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 3px;
}
.btn-orange {
  background: var(--orange);
  color: #1a1006;
}
.btn-orange:hover {
  background: var(--orange-2);
}
.btn-ghost {
  border-color: #c9cfd8;
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-2);
}
.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 9px;
}
.arrow {
  width: 16px;
  height: 16px;
  flex: none;
}

/* Navigation */
.nav {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 10;
  background: rgba(10, 17, 28, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 53, 80, 0.6);
}
.nav .max {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand svg {
  height: 40px;
  width: auto;
  display: block;
}
.links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
}
.links a {
  text-decoration: none;
  color: var(--text);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
}
.links a:hover {
  color: var(--orange-2);
}
.links a.active {
  color: var(--orange);
  border-color: var(--orange);
}
.actions {
  display: flex;
  gap: 10px;
}
@media (max-width: 920px) {
  .links {
    display: none;
  }
  .actions {
    margin-left: auto;
  }
}
@media (max-width: 460px) {
  .actions .btn-ghost {
    display: none;
  }
  .brand svg {
    height: 34px;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      60% 70% at 78% 30%,
      rgba(58, 106, 147, 0.28),
      transparent 70%
    ),
    radial-gradient(
      40% 50% at 100% 90%,
      rgba(224, 145, 63, 0.12),
      transparent 70%
    ),
    var(--night);
}
.hero .max {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  padding-block: 72px 80px;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 18px;
}
.hero h1 .v {
  color: var(--orange);
}
.hero .lead {
  font-size: 18px;
  color: #c4cbd5;
  max-width: 34em;
  margin: 22px 0 30px;
}
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
}
.proof div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 22px;
  margin-right: 22px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.3;
  color: #c4cbd5;
}
.proof div:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}
.proof svg {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--orange);
}
@media (max-width: 920px) {
  .hero .max {
    grid-template-columns: 1fr;
    padding-block: 48px 56px;
  }
}

/* Maquette du tableau de bord (illustration) */
.screen {
  position: relative;
  background: #0b1422;
  border: 1px solid #2a3e5c;
  border-radius: 16px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 8px #111b2b;
  overflow: hidden;
  font-size: 12px;
  max-width: 100%;
}
.screen .top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #1c2b42;
}
.screen .top svg {
  height: 18px;
  width: auto;
}
.screen .top .pill {
  margin-left: auto;
  background: var(--orange);
  color: #1a1006;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
}
.screen .in {
  display: grid;
  grid-template-columns: 128px 1fr;
}
.side {
  border-right: 1px solid #1c2b42;
  padding: 10px 8px;
  display: grid;
  gap: 2px;
  align-content: start;
  color: #8e9bae;
}
.side span {
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.side span.on {
  background: rgba(224, 145, 63, 0.14);
  color: var(--orange);
}
.main {
  padding: 14px;
  display: grid;
  gap: 10px;
  min-width: 0;
}
.main h4 {
  margin: 0;
  font: 600 14px var(--display);
}
.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.kpi {
  background: var(--panel);
  border: 1px solid #1e3050;
  border-radius: 8px;
  padding: 10px;
}
.kpi b {
  display: block;
  font: 700 16px var(--display);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.kpi small {
  color: #8e9bae;
}
.charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}
.card {
  background: var(--panel);
  border: 1px solid #1e3050;
  border-radius: 8px;
  padding: 10px;
  min-width: 0;
}
.card p {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 11px;
  color: #c4cbd5;
}
.card svg {
  display: block;
  width: 100%;
  height: auto;
}
.legend {
  display: grid;
  gap: 3px;
  font-size: 10px;
  color: #8e9bae;
}
.legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  margin-right: 6px;
}
.donut {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  align-items: center;
}
.illus {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 560px) {
  .screen .in {
    grid-template-columns: 1fr;
  }
  .side {
    display: none;
  }
  .charts {
    grid-template-columns: 1fr;
  }
}

/* Sections */
section {
  scroll-margin-top: 80px;
}
.sec {
  padding-block: 88px;
}
.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  display: grid;
  gap: 14px;
}
.sec-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.sec-head p {
  color: #c4cbd5;
  margin: 0;
}
.band {
  background: var(--night-2);
  border-block: 1px solid #16243a;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.feature {
  padding: 28px 28px 32px;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 10px;
  align-content: start;
}
.feature:nth-child(3n + 1) {
  border-left: 0;
}
.feature:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}
.feature svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
}
.feature h3 {
  font-size: 18px;
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 860px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature,
  .feature:nth-child(3n + 1) {
    border-left: 1px solid var(--line);
  }
  .feature:nth-child(2n + 1) {
    border-left: 0;
  }
  .feature:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 540px) {
  .features {
    grid-template-columns: 1fr;
  }
  .feature {
    border-left: 0 !important;
    padding-inline: 0;
  }
  .feature:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.why h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin-top: 14px;
}
.why .txt > p {
  color: #c4cbd5;
  margin: 18px 0 22px;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}
.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.checks svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--orange);
  margin-top: 1px;
}
.phone {
  position: relative;
}
.phone .glow {
  position: absolute;
  inset: 8% 4% 0 10%;
  background: radial-gradient(
    closest-side,
    rgba(224, 145, 63, 0.35),
    transparent
  );
  filter: blur(10px);
}
.ticket {
  position: absolute;
  left: -8px;
  bottom: -24px;
  width: 150px;
  background: #0b1422;
  border: 1px solid #2a3e5c;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 11px;
  color: #c4cbd5;
}
.ticket svg.qr {
  width: 92px;
  height: 92px;
  display: block;
  margin: 8px auto;
  background: #fff;
  border-radius: 6px;
  padding: 6px;
}
.ticket .code {
  font:
    700 14px/1 ui-monospace,
    Menlo,
    Consolas,
    monospace;
  color: var(--text);
  letter-spacing: 0.12em;
}
@media (max-width: 920px) {
  .why {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ticket {
    left: 8px;
  }
}

/* Tarifs */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan.star {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange) inset;
}
.plan .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.plan .name h3 {
  font-size: 16px;
  letter-spacing: 0.12em;
}
.tag {
  font: 700 11px var(--body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--orange);
  color: #1a1006;
  padding: 4px 10px;
  border-radius: 999px;
}
.price {
  font: 800 38px/1 var(--display);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.price small {
  display: block;
  font: 500 14px/1.4 var(--body);
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 8px;
}
.for {
  color: #c4cbd5;
  font-size: 14px;
  margin: 0;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  font-size: 14.5px;
}
.plan li {
  display: flex;
  gap: 10px;
}
.plan li::before {
  content: '';
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12.5 9.5 18 20 6.5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12.5 9.5 18 20 6.5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.plan .btn {
  margin-top: auto;
  justify-content: center;
}
.fine {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 26px auto 0;
  max-width: 720px;
}
@media (max-width: 920px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* À propos, contact */
.about {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.about div {
  display: grid;
  gap: 8px;
  align-content: start;
}
.about h3 {
  font-size: 18px;
}
.about p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
  }
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
}
.contact h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 12px;
}
.contact p {
  color: #c4cbd5;
}
.tel {
  display: grid;
  gap: 12px;
}
.tel .num {
  font: 800 clamp(24px, 3vw, 32px)/1.1 var(--display);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  user-select: all;
}
.tel .todo {
  color: var(--orange-2);
}
.tel small {
  color: var(--muted);
}
@media (max-width: 860px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

footer {
  border-top: 1px solid #16243a;
  padding-block: 32px;
  color: var(--muted);
  font-size: 14px;
}
footer .max {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}
footer svg {
  height: 30px;
  width: auto;
}
footer .sp {
  margin-left: auto;
}
footer a {
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}
