/* ---------------------------------------------
   Chrono blue — landing site
   Design tokens
--------------------------------------------- */

:root {
    --bg: #070d17;
    --bg-raised: #0b1424;
    --card: rgba(255, 255, 255, .04);
    --card-hover: rgba(255, 255, 255, .07);
    --border: rgba(255, 255, 255, .09);
    --border-strong: rgba(255, 255, 255, .16);
    --text: #eef4fc;
    --muted: #9fb0c8;
    --brand: #1f7bff;
    --brand-soft: rgba(31, 123, 255, .14);
    --accent: #4cc3ff;
    --gradient: linear-gradient(135deg, #1f7bff 0%, #4cc3ff 100%);
    --radius: 18px;
    --nav-h: 72px;
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

section {
    padding: 96px 0;
    position: relative;
}

/* ---------------------------------------------
   Typography
--------------------------------------------- */

h1, h2, h3 {
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.02em;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
}

.grad-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* The logo's exact blue (sampled from images/logo-md.png) */
.logo-blue {
    color: #015eb5;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: var(--card);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 24px;
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 12px var(--brand);
}

/* ---------------------------------------------
   Buttons & badges
--------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 24px rgba(31, 123, 255, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(31, 123, 255, .5);
}

.btn-ghost {
    background: var(--card);
    border: 1px solid var(--border-strong);
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--card-hover);
    transform: translateY(-2px);
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px 10px 18px;
    background: #0b1220;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.store-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 123, 255, .55);
    box-shadow: 0 10px 28px rgba(31, 123, 255, .25);
}

.store-btn .brand {
    width: 26px;
    height: 26px;
    color: #fff;
    flex: none;
}

.store-btn .txt {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    text-align: left;
}

.store-btn .txt small {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
}

.store-btn .txt b {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text);
}

/* MADE IN FRANCE — faithful to the original site's badge, adapted to the dark theme */

.mif {
    display: inline-block;
    width: min(320px, 80%);
    margin-top: 34px;
    text-align: center;
}

.mif .bars {
    display: flex;
    height: 13px;
}

.mif .bars i {
    flex: 1;
}

.mif .bars i:nth-child(1) { background: #0055a4; }
.mif .bars i:nth-child(2) { background: #fff; }
.mif .bars i:nth-child(3) { background: #ef4135; }

.mif .text {
    display: block;
    margin-top: 14px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .38em;
    text-indent: .38em;
    color: var(--text);
}

/* Small inline variant, shown under the store buttons */

.mif-sm {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    color: var(--muted);
}

.mif-sm .bars {
    display: flex;
    width: 27px;
    height: 8px;
    border-radius: 2px;
    overflow: hidden;
}

.mif-sm .bars i {
    flex: 1;
}

.mif-sm .bars i:nth-child(1) { background: #0055a4; }
.mif-sm .bars i:nth-child(2) { background: #fff; }
.mif-sm .bars i:nth-child(3) { background: #ef4135; }

/* ---------------------------------------------
   Navigation
--------------------------------------------- */

.nav {
    position: fixed;
    inset: 0 0 auto;
    height: var(--nav-h);
    z-index: 100;
    transition: background .3s, border-color .3s, backdrop-filter .3s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(7, 13, 23, .78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
}

.nav .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 17px;
    color: var(--text);
}

.nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 9px 14px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
    font-size: 14.5px;
    transition: color .2s, background .2s;
}

.nav-links a:hover {
    color: var(--text);
    background: var(--card-hover);
}

.nav-links a.active {
    color: var(--text);
    background: var(--brand-soft);
}

.nav-cta {
    margin-left: 8px;
    padding: 10px 20px;
    font-size: 14px;
}

/* The generic .nav-links a rules (muted color, hover/active backgrounds) are more
   specific than .btn-primary — keep the CTA white on its gradient in every state */
.nav-links .nav-cta,
.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
    color: #fff;
    background: var(--gradient);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform .3s, opacity .3s;
}

.nav-toggle span + span {
    margin-top: 6px;
}

.nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------------------------------------
   Hero
--------------------------------------------- */

.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 48px) 0 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .5;
}

.hero-bg .blob-1 {
    width: 560px;
    height: 560px;
    top: -180px;
    left: -120px;
    background: #123f8f;
}

.hero-bg .blob-2 {
    width: 480px;
    height: 480px;
    bottom: -160px;
    right: -80px;
    background: #0e5ac2;
    opacity: .35;
}

.hero-bg .blob-3 {
    width: 300px;
    height: 300px;
    top: 30%;
    right: 28%;
    background: #1c9ede;
    opacity: .22;
}

.hero-bg .grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 0%, transparent 100%);
    mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 0%, transparent 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(38px, 5.6vw, 62px);
    margin-bottom: 22px;
}

.hero .lead {
    color: var(--muted);
    font-size: clamp(16px, 1.6vw, 19px);
    max-width: 520px;
    margin-bottom: 34px;
}

/* ---------------------------------------------
   Phone mockups — app screens rebuilt in HTML/CSS
   (styles mirrored from the React Native app:
   MapHeader, MapFooter, SubmitTripModal)
--------------------------------------------- */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    position: relative;
    background: #10161f;
    border: 1px solid var(--border-strong);
    border-radius: 44px;
    padding: 11px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    width: 270px;
    flex: none;
}

.phone .notch {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 21px;
    background: #10161f;
    border-radius: 0 0 13px 13px;
    z-index: 6;
}

.phone-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(31, 123, 255, .35) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

/* Angled duo — the old site's side-mockup composition */

.mockup-duo {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.mockup-duo .duo-front {
    position: relative;
    z-index: 2;
    transform: rotate(5deg);
}

.mockup-duo .duo-back {
    position: absolute;
    z-index: 1;
    top: 26px;
    left: 50%;
    transform: translateX(-88%) rotate(-14deg);
    width: 250px;
    filter: brightness(.75);
}

/* App screen shell */

.app-screen {
    position: relative;
    overflow: hidden;
    border-radius: 33px;
    /* explicit height (width x 980/464) — aspect-ratio kept as documentation only */
    aspect-ratio: 464 / 980;
    height: 520px;
    background: #f4f7fb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.35;
    z-index: 1;
}

.showcase-stage .app-screen,
.mockup-duo .duo-back .app-screen {
    height: 477px;
}

.app-map {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.screen-home .app-map { background-image: url(../images/map-home.png); }
.screen-trip .app-map { background-image: url(../images/map-route.png); }

.app-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Top row — white round pills + globe (MapHeader) */

.app-top {
    position: absolute;
    top: 38px;
    left: 13px;
    right: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.app-pill {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #222428;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.app-globe {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* "Votre trajet" dark card (MapHeader topCard) */

.app-card {
    position: absolute;
    top: 96px;
    left: 13px;
    right: 13px;
    z-index: 2;
    background: rgba(20, 20, 20, .9);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
    color: #fff;
}

.app-card .k {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .8px;
    color: #2f80e0;
}

.app-card .k svg {
    width: 10px;
    height: 10px;
}

.app-card .t {
    font-size: 14px;
    font-weight: 700;
    margin-top: 3px;
}

.app-card .s {
    font-size: 10px;
    color: #9a9a9a;
    margin-top: 2px;
}

.app-cta-row {
    display: flex;
    gap: 10px;
    margin-top: 11px;
}

.app-cta {
    flex: 1;
    height: 33px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    color: #fff;
    border: 1px solid;
}

.app-cta svg {
    width: 11px;
    height: 11px;
}

.app-cta.instant {
    background: rgb(46, 38, 18);
    border-color: rgba(245, 193, 8, .55);
}

.app-cta.instant svg { color: #f5c108; }

.app-cta.book {
    background: rgb(18, 28, 46);
    border-color: rgba(0, 86, 186, .55);
}

.app-cta.book svg { color: #2f80e0; }

/* Locate button */

.app-locate {
    position: absolute;
    right: 13px;
    bottom: 86px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #222428;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

/* Mode footer bar (MapFooter) */

.app-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    height: 68px;
    background: #222428;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

.app-avatar {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-footer .mid {
    flex: 1;
    text-align: center;
}

.app-footer .mode {
    color: #2f80e0;
    font-weight: 700;
    font-size: 12px;
}

.app-footer .name {
    color: #fff;
    font-size: 11px;
}

.app-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: #0056ba;
    flex: none;
}

.app-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
}

/* Map markers — pin tip anchors on the arrival point, dot centers on departure */

.app-pin {
    position: absolute;
    z-index: 2;
    width: 26px;
    height: 26px;
    color: #45b7cd;
    transform: translate(-50%, -100%);
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .3));
}

.app-dot {
    position: absolute;
    z-index: 2;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #0056ba;
    border: 2.5px solid #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

/* Trip bottom sheet (SubmitTripModal) */

.app-sheet {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 14px;
    z-index: 2;
    background: #fff;
    border-radius: 15px;
    padding: 10px 13px 13px;
    color: #1c1e21;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}

.app-sheet .handle {
    width: 34px;
    height: 4px;
    border-radius: 2px;
    background: #c3c6cb;
    margin: 0 auto 10px;
}

.app-close {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #0056ba;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.app-itin-row {
    display: flex;
    align-items: center;
}

.app-point {
    flex: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #0056ba;
    background: #DAEDFD;
    margin-right: 10px;
}

.app-itin-line {
    width: 2px;
    height: 13px;
    background: #0056ba;
    margin-left: 8px;
}

.app-itin-row .lbl {
    font-size: 9px;
    font-weight: 700;
}

.app-itin-row .addr {
    font-size: 9px;
    color: #666;
}

.app-div {
    height: 2px;
    background: #F8F8FA;
    margin: 10px 18px 8px;
}

.app-mode-label {
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #9a9a9a;
    margin-bottom: 8px;
}

.app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 9px;
}

.app-stats .h {
    text-align: center;
    font-size: 8.5px;
    font-weight: 700;
    color: #9a9a9a;
}

.app-stats .v {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
}

.app-stats .v small {
    font-size: 8px;
    font-weight: 400;
}

.app-stats .pax {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.app-stats .pax-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #DAEDFD;
    color: #52575C;
    font-size: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-btn {
    margin-top: 12px;
    height: 37px;
    border-radius: 19px;
    background: #0056ba;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Login screen (AuthenticationScreen) */

.screen-login {
    background: #1b1d21;
}

.app-login {
    position: absolute;
    inset: 0;
    padding: 52px 20px 0;
    text-align: center;
    color: #fff;
}

.app-login .logo b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
}

.app-login .logo span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1565d8;
}

.app-login .tabs {
    display: flex;
    justify-content: space-around;
    margin: 26px 0 22px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #8a8f96;
}

.app-login .tabs .on {
    color: #fff;
    padding-bottom: 6px;
    border-bottom: 2px solid #1565d8;
}

.app-login .input {
    height: 34px;
    border-radius: 17px;
    background: #26282c;
    color: #8a8f96;
    font-size: 11px;
    text-align: left;
    padding: 0 14px;
    line-height: 34px;
    margin-bottom: 10px;
}

.app-login .go {
    height: 34px;
    border-radius: 17px;
    background: #0a4f92;
    color: #cfd6df;
    font-size: 12px;
    font-weight: 600;
    line-height: 34px;
    margin: 6px 12px 12px;
}

.app-login .forgot {
    font-size: 11px;
    color: #e6e9ee;
}

/* ---------------------------------------------
   Screens showcase — tabbed panel
--------------------------------------------- */

.showcase {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    background:
        radial-gradient(ellipse 90% 120% at 0% -20%, rgba(31, 123, 255, .14) 0%, transparent 60%),
        var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px;
}

.showcase-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-tab {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    font-family: var(--font);
    transition: background .3s, border-color .3s;
}

.showcase-tab:hover {
    background: var(--card-hover);
}

.showcase-tab.active {
    background: var(--brand-soft);
    border-color: rgba(31, 123, 255, .45);
}

.showcase-tab .icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-soft);
    border: 1px solid rgba(31, 123, 255, .3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-tab .icon svg {
    width: 20px;
    height: 20px;
}

.showcase-tab h3 {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 5px;
}

.showcase-tab p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

.showcase-stage {
    position: relative;
    height: 505px;
    display: flex;
    justify-content: center;
}

.showcase-stage .phone {
    position: absolute;
    top: 0;
    width: 250px;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .45s ease, transform .45s ease;
}

.showcase-stage .phone.active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

/* Dark bottom sheet (driver list / booking — BottomSheetModal on Colors.dark) */

.screen-drivers .app-map { background-image: url(../images/map-route.png); }
.screen-booking .app-map { background-image: url(../images/map-home.png); }

.app-dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .3);
}

.app-dsheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 13%;
    z-index: 2;
    background: #222428;
    border-radius: 15px 15px 0 0;
    padding: 8px 10px 12px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .35);
}

.app-dsheet .handle {
    width: 34px;
    height: 4px;
    border-radius: 2px;
    background: #757575;
    margin: 0 auto 8px;
}

.app-dsheet .sheet-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-dsheet .app-close {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    font-size: 11px;
}

/* Driver match cards (BeforeTripStart + DriverCard) */

.m-card {
    background: #141414;
    border-radius: 6px;
    margin-bottom: 11px;
}

.m-driver {
    display: flex;
    justify-content: space-between;
    padding: 9px 10px;
}

.m-id {
    display: flex;
    align-items: center;
    gap: 9px;
}

.m-ava {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-name {
    font-size: 10px;
    font-weight: 700;
}

.m-stars {
    color: #f5c108;
    font-size: 8px;
    letter-spacing: 1px;
}

.m-stars .off {
    color: rgba(255, 255, 255, .25);
}

.m-mark {
    color: #BA9128;
    font-size: 7px;
    margin-top: 1px;
}

.m-verif {
    border-right: 4px solid #0056ba;
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.m-verif span {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 7px;
}

.m-verif .ok {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2AC769;
    color: #fff;
    font-size: 6px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.m-content {
    padding: 2px 10px 10px;
}

.m-content .m-point {
    flex: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0056ba;
    background: #DAEDFD;
    margin-right: 8px;
}

.m-row {
    display: flex;
    align-items: center;
}

.m-lbl {
    font-size: 7px;
    font-weight: 700;
}

.m-lbl i {
    font-style: normal;
    font-weight: 400;
    color: #9a9a9a;
}

.m-addr {
    font-size: 8px;
}

.m-line {
    width: 2px;
    height: 9px;
    background: #0056ba;
    margin-left: 6px;
}

.m-btn {
    margin-top: 9px;
    height: 24px;
    border-radius: 12px;
    background: #0056ba;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking sheet (MapHeader booking mode) */

.b-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 9px;
}

.b-ico {
    flex: none;
    width: 16px;
    height: 26px;
    color: #0056ba;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-ico svg {
    width: 13px;
    height: 13px;
}

.b-point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0056ba;
    background: #222428;
}

.b-field {
    flex: 1;
    min-width: 0;
}

.b-lbl {
    color: #9a9a9a;
    font-size: 7px;
    margin: 0 0 3px 2px;
}

.b-input {
    background: #141414;
    border-radius: 4px;
    height: 26px;
    line-height: 26px;
    padding: 0 8px;
    font-size: 9px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
}

.b-input.ph {
    color: #8a8f96;
}

.b-line {
    width: 2px;
    height: 10px;
    background: #0056ba;
    margin: -4px 0 5px 7px;
}

.b-btn {
    margin: 14px 12px 0;
    height: 30px;
    border-radius: 15px;
    background: #0056ba;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mon Chrono blue — leaderboard (MyChronoBlue) */

.screen-dark {
    background: #222428;
}

.lb {
    position: absolute;
    inset: 0;
    padding: 14px 12px;
    color: #fff;
}

.lb-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-globe {
    display: block;
    width: 56px;
    height: 56px;
    margin: 32px auto 0;
    border-radius: 50%;
}

.lb-hello {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin-top: 12px;
}

.lb-brand {
    text-align: center;
    font-size: 9.5px;
    color: #9a9a9a;
    margin-top: 2px;
}

.lb-brand b {
    color: #fff;
}

.lb-brand span {
    color: #1565d8;
    font-weight: 800;
}

.lb-rank {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 10px;
    margin-top: 16px;
}

.lb-rank .ico {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245, 193, 8, .18);
    color: #f5c108;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-rank .ico svg {
    width: 18px;
    height: 18px;
}

.lb-rank .k {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .9px;
    color: #9a9a9a;
}

.lb-rank .v {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.lb-rank .s {
    font-size: 8px;
    color: #9a9a9a;
}

.lb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}

.lb-cell {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 9px;
}

.lb-cell .ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-cell .ico svg {
    width: 14px;
    height: 14px;
}

.lb-cell .k {
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: .6px;
    color: #9a9a9a;
    margin-top: 7px;
}

.lb-cell .v {
    font-size: 14px;
    font-weight: 800;
    margin-top: 1px;
}

.lb-cell .s {
    font-size: 6.5px;
    color: #9a9a9a;
}

.lb-hint {
    text-align: center;
    font-size: 6.5px;
    color: #9a9a9a;
    margin-top: 12px;
    padding: 0 14px;
}

/* ---------------------------------------------
   Stats band
--------------------------------------------- */

.stats-band {
    padding: 0;
}

.stats-band .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 34px 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.stat {
    text-align: center;
}

.stat .num {
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: -.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat .label {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

/* ---------------------------------------------
   About
--------------------------------------------- */

.about .container {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-visual .phone-glow {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(76, 195, 255, .22) 0%, transparent 70%);
}

.about h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 18px;
}

.about .tagline {
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 16px;
}

.about p {
    color: var(--muted);
    margin-bottom: 18px;
}

.check-list {
    list-style: none;
    margin: 26px 0 30px;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 9px 0;
    color: var(--text);
    font-weight: 600;
}

.check-list .check {
    flex: none;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

/* ---------------------------------------------
   Features
--------------------------------------------- */

.features {
    background: var(--bg-raised);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform .3s, border-color .3s, background .3s, box-shadow .3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 123, 255, .45);
    background: var(--card-hover);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
}

.feature-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-soft);
    border: 1px solid rgba(31, 123, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14.5px;
}

/* ---------------------------------------------
   Download CTA
--------------------------------------------- */

.download-cta .container {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 72px 48px;
    text-align: center;
    background:
        radial-gradient(ellipse 90% 130% at 50% -20%, rgba(76, 195, 255, .28) 0%, transparent 60%),
        linear-gradient(160deg, #0d2f6b 0%, #0a1a38 60%, var(--bg-raised) 100%);
    border: 1px solid rgba(31, 123, 255, .3);
}

.download-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 12px;
}

.download-cta p {
    color: var(--muted);
    font-size: 17px;
    max-width: 480px;
    margin: 0 auto 32px;
}

.download-cta .store-badges {
    justify-content: center;
}

.download-cta .globe {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 0 40px rgba(31, 123, 255, .5);
}

/* ---------------------------------------------
   Reviews
--------------------------------------------- */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform .3s, border-color .3s;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 123, 255, .45);
}

.review-card .stars {
    color: #ffc531;
    letter-spacing: 3px;
    font-size: 15px;
    margin-bottom: 16px;
}

.review-card .stars .off {
    color: rgba(255, 255, 255, .18);
}

.review-card blockquote {
    border: none;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 22px;
}

.review-card .who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card .who span {
    font-weight: 700;
    font-size: 15px;
}

/* ---------------------------------------------
   FAQ
--------------------------------------------- */

.faq {
    background: var(--bg-raised);
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .3s;
}

.faq-item[open] {
    border-color: rgba(31, 123, 255, .45);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .plus {
    flex: none;
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    transition: transform .3s, background .3s;
}

.faq-item summary .plus::before,
.faq-item summary .plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 1px;
    background: var(--accent);
    transform: translate(-50%, -50%);
}

.faq-item summary .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary .plus {
    transform: rotate(45deg);
    background: var(--brand-soft);
}

.faq-item .answer {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 15px;
}

/* ---------------------------------------------
   Footer
--------------------------------------------- */

.footer {
    border-top: 1px solid var(--border);
    padding: 44px 0;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--text);
}

.footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: color .25s, border-color .25s, transform .25s;
}

.footer-social a:hover {
    color: var(--text);
    border-color: var(--brand);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
}

.footer-meta a {
    color: var(--muted);
    font-weight: 600;
    transition: color .2s;
}

.footer-meta a:hover {
    color: var(--text);
}

/* ---------------------------------------------
   Legal page (CGU)
--------------------------------------------- */

.legal-hero {
    padding: calc(var(--nav-h) + 72px) 0 56px;
    text-align: center;
    background:
        radial-gradient(ellipse 80% 100% at 50% -30%, rgba(31, 123, 255, .25) 0%, transparent 65%),
        var(--bg);
    border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
    font-size: clamp(30px, 4.4vw, 44px);
    margin-bottom: 10px;
}

.legal-hero p {
    color: var(--muted);
}

.legal {
    max-width: 780px;
    margin: 0 auto;
    padding: 64px 0 96px;
}

.legal h2 {
    font-size: 22px;
    margin: 44px 0 14px;
    padding-top: 8px;
}

.legal h2:first-child {
    margin-top: 0;
}

.legal p,
.legal li {
    color: var(--muted);
    margin-bottom: 12px;
    font-size: 15.5px;
}

.legal ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal b, .legal strong {
    color: var(--text);
}

.legal a {
    font-weight: 600;
}

/* ---------------------------------------------
   Reveal animations
--------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------------------------------------------
   Responsive
--------------------------------------------- */

@media (max-width: 980px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }

    .hero .lead {
        margin-inline: auto;
    }

    .hero .store-badges {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 12px;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-visual {
        order: 2;
    }

    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .showcase {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 36px;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px 4vw 20px;
        background: rgba(7, 13, 23, .97);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s, opacity .3s, visibility .3s;
    }

    .nav.open .nav-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 13px 16px;
        font-size: 16px;
    }

    .nav-cta {
        margin: 8px 0 0;
    }
}

@media (max-width: 640px) {
    section {
        padding: 72px 0;
    }

    .features-grid,
    .reviews-grid,
    .stats-band .container {
        grid-template-columns: 1fr;
    }

    .stats-band .container {
        gap: 28px;
        padding: 32px 24px;
    }

    .phone {
        width: 240px;
    }

    .app-screen {
        height: 456px;
    }

    .showcase-stage {
        height: 484px;
    }

    .showcase-stage .phone {
        width: 240px;
    }

    .mockup-duo .duo-back {
        display: none;
    }

    .mockup-duo .duo-front {
        transform: none;
    }

    .download-cta .container {
        padding: 56px 24px;
    }
}
