/* ═══════════════════════════════════════════════════════════
   Bency Motors — landing.css
   Même identité que le formulaire (styles.css) : noir/rouge,
   radar, serif pour les titres — étendue en page publique.
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --surface: #161616;
  --surface-2: #1f1f1f;
  --border: #2b2b2b;
  --red: #e2231a;
  --red-dark: #a3160f;
  --red-glow: rgba(226, 35, 26, 0.35);
  --white: #f5f3ee;
  --text-muted: #9a9a9a;
  --success: #2fae5c;
  --radius-lg: 20px;
  --radius-md: 12px;
  --font-serif: Georgia, 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
::selection { background: var(--red-glow); }

.skip-link {
  position: absolute; top: -40px; left: 8px; z-index: 1000;
  background: var(--red); color: #fff; padding: 8px 14px;
  border-radius: 6px; text-decoration: none; font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; gap: .8rem;
  padding: 16px 24px;
}
.nav__logo { width: 38px; height: 38px; border-radius: 50%; box-shadow: 0 0 0 2px var(--red), 0 3px 14px var(--red-glow); }
.nav__name { font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; letter-spacing: .01em; }
.nav__name em { font-style: normal; color: var(--red); }
.nav__cta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--white); text-decoration: none;
  padding: 9px 18px; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.nav__cta:hover { border-color: var(--red); transform: translateY(-1px); background: var(--surface-2); }

/* ── Hero ── */
.market-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 22px 0;
}
.market-bar__inner {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px;
  text-align: center;
}
.market-bar__stat { display: flex; flex-direction: column; gap: 2px; }
.market-bar__value {
  font: 700 1.8rem var(--font-serif); color: var(--white);
  font-variant-numeric: tabular-nums;
}
.market-bar__label {
  font-size: .8rem; color: var(--text-muted);
}

.hero {
  position: relative;
  padding: 76px 0 64px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 10%, rgba(226,35,26,.14), transparent 55%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .hero__inner { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px var(--red-glow);
  animation: blip 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .eyebrow::before { animation: none; } }

h1.hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0 0 22px;
  text-wrap: balance;
}
h1.hero__title em { font-style: normal; color: var(--red); }

.hero__sub {
  font-size: 1.08rem; line-height: 1.62;
  color: #cfcac0;
  max-width: 46ch;
  margin: 0 0 34px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; text-decoration: none;
  font-weight: 700; font-size: .96rem;
  padding: 14px 26px; border-radius: 12px;
  box-shadow: 0 6px 24px var(--red-glow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--red-glow); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); text-decoration: none;
  font-weight: 600; font-size: .96rem;
  padding: 14px 22px; border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color .15s ease, transform .15s ease;
}
.btn-secondary:hover { border-color: var(--red); transform: translateY(-2px); }

/* ── Radar visual ── */
.radar {
  position: relative;
  width: 100%; max-width: 380px; aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, #120707 0%, #0a0a0a 70%);
  border: 1px solid var(--border);
}
.radar__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(226,35,26,.16);
}
.radar__ring--2 { inset: 18%; }
.radar__ring--3 { inset: 36%; }
.radar__ring--4 { inset: 54%; }
.radar__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--red-glow), transparent 26%);
  animation: sweep 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .radar__sweep { animation: none; opacity: .3; } }
.radar__center {
  position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%; transform: translate(-50%,-50%);
  box-shadow: 0 0 0 4px var(--red-glow);
}
.radar__blip {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transform: translate(-50%, -50%);
}
.radar__blip .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--white);
  box-shadow: 0 0 0 5px rgba(245,243,238,.08);
  animation: blip 2.6s ease-in-out infinite;
}
.radar__blip .tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .03em;
  color: var(--text-muted); white-space: nowrap;
}
.radar__blip--1 { top: 18%; left: 72%; }
.radar__blip--2 { top: 68%; left: 82%; }
.radar__blip--1 .dot { animation-delay: .3s; }
.radar__blip--3 { top: 80%; left: 32%; }
.radar__blip--2 .dot { animation-delay: 1s; }
.radar__blip--4 { top: 28%; left: 20%; }
.radar__blip--3 .dot { animation-delay: 1.7s; }
.radar__blip--4 .dot { animation-delay: 2.3s; }

@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes blip {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

/* ── Social proof ── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.proof-strip__inner {
  display: flex; align-items: center; gap: 14px;
  font-size: .92rem; color: var(--text-muted);
}
.proof-strip .dot-ok {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 4px rgba(47,174,92,.18);
  flex-shrink: 0;
}
.proof-strip strong { color: var(--white); }

/* ── Sections ── */
section.block { padding: 88px 0; }
section.block.tight { padding: 72px 0; }
.block__head { max-width: 56ch; margin: 0 0 48px; }
.block__kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--red); margin: 0 0 12px;
}
h2.block__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 0 0 14px; text-wrap: balance;
}
.block__desc { font-size: 1.02rem; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step__num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700;
  color: var(--red); line-height: 1; margin-bottom: 14px;
}
.step__title { font-weight: 700; font-size: 1.05rem; margin: 0 0 8px; }
.step__desc { color: var(--text-muted); font-size: .94rem; line-height: 1.55; margin: 0; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px 22px;
}
.feature-card .icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(226,35,26,.1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1rem; margin: 0 0 8px; font-weight: 700; }
.feature-card p { font-size: .89rem; line-height: 1.55; color: var(--text-muted); margin: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 26px; display: flex; flex-direction: column;
}
.price-card.reco { border-color: var(--red); position: relative; background: var(--surface-2); }
.price-card .badge {
  position: absolute; top: -12px; left: 26px;
  background: var(--red); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px;
}
.price-card .tier-name { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
.price-card .tier-price { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; margin: 10px 0 4px; }
.price-card .tier-price span { font-family: var(--font-sans); font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.price-card .tier-note { font-size: .88rem; color: var(--text-muted); line-height: 1.55; margin: 6px 0 24px; flex: 1; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; }
.price-card li { font-size: .87rem; color: #d8d3ca; display: flex; align-items: baseline; gap: 8px; }
.price-card li::before { content: "✓"; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 96px 0;
  background: radial-gradient(circle at 50% 20%, rgba(226,35,26,.12), transparent 60%);
  border-top: 1px solid var(--border);
}
.final-cta h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 16px; text-wrap: balance; }
.final-cta p { color: var(--text-muted); max-width: 46ch; margin: 0 auto 32px; font-size: 1.02rem; }

/* Footer */
footer.site-foot { border-top: 1px solid var(--border); padding: 32px 0; }
.site-foot__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.site-foot__inner p { margin: 0; font-size: .82rem; color: var(--text-muted); }
.site-foot__inner a { text-decoration: none; color: var(--text-muted); font-size: .82rem; }
.site-foot__inner a:hover { color: var(--white); }

/* Focus visibility */
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
