.menu-toggle { display: none; }
.compact-header { padding: 0 8%; }
.logo { color: inherit; text-decoration: none; }
form { max-width: 700px; margin: 24px 0 50px; padding: 24px; background: #151917; border: 1px solid #282e2a; border-radius: 6px; }
label { display: block; margin: 16px 0; }
input:not([type=checkbox]), textarea, select { display: block; width: 100%; margin-top: 8px; padding: 12px; background: #090b0a; color: #f4f4f4; border: 1px solid #69736c; border-radius: 4px; font: inherit; }
button { cursor: pointer; padding: 12px 18px; border: 0; border-radius: 4px; background: #42e584; color: #07120b; font: inherit; font-weight: bold; }
a { color: #73efa3; }
:focus-visible { outline: 3px solid #73efa3; outline-offset: 4px; }
.watch-card h2 { font-size: 1.6rem; margin-top: 18px; }
.affiliate-note { margin-top: 40px; }
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #090b0a;
    color: #f4f4f4;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 8%;
    background:
        radial-gradient(circle at 80% 30%, #173d2a 0%, transparent 32%),
        #090b0a;
}

.navbar {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #262b28;
}

.logo {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.logo span {
    color: #42e584;
}

.menu {
    display: flex;
    gap: 32px;
}

.menu a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.menu a:hover {
    color: #42e584;
}

.hero-content {
    max-width: 950px;
    margin: auto 0;
    padding: 80px 0;
}

.surtitle,
.section-number {
    color: #42e584;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-bottom: 35px;
}

h1 span {
    color: #42e584;
}

.intro {
    color: #aaa;
    max-width: 650px;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    color: #07120b;
    background: #42e584;
    padding: 14px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background: #73efa3;
}

.section {
    padding: 120px 8%;
    max-width: 1400px;
    margin: auto;
}

.section.dark {
    max-width: none;
    background: #0e110f;
}

.section.dark > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 25px;
}

.lead {
    font-size: 1.3rem;
    color: #ddd;
    max-width: 800px;
    margin-bottom: 25px;
}

.section > p:not(.section-number):not(.lead) {
    color: #999;
    max-width: 800px;
    margin-bottom: 15px;
}

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

.card {
    background: #151917;
    border: 1px solid #282e2a;
    padding: 0 30px 30px;
    min-height: 440px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-visual {
    width: calc(100% + 60px);
    aspect-ratio: 20 / 9;
    margin: 0 -30px 26px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f4f4f2;
    border-bottom: 1px solid #282e2a;
}

.card-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-visual--product img,
.card-visual--bundle img,
.card-visual--clamp img {
    object-fit: cover;
}

.card-visual--steam {
    background: #0c1218;
}

.card-visual--steam img {
    object-fit: cover;
}

.card h3 {
    font-size: 1.4rem;
    margin: 22px 0 12px;
}

.card p {
    color: #999;
}

.status {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.12em;
}

.reflection {
    color: #bbb;
    background: #292d2b;
}

.target {
    color: #42e584;
    background: #173d2a;
}

.decided {
    color: #d8e7dd;
    background: #29352e;
}

.ordered {
    color: #07120b;
    background: #42e584;
}

.journal-entry {
    border-left: 2px solid #42e584;
    margin-top: 50px;
    padding: 10px 0 10px 30px;
    max-width: 750px;
}

.journal-entry + .journal-entry {
    margin-top: 35px;
}

.journal-entry--milestone {
    background: linear-gradient(90deg, rgba(66, 229, 132, 0.08), transparent 75%);
    padding-top: 24px;
    padding-bottom: 24px;
}

.journal-date {
    color: #42e584;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.15em;
}

.journal-entry h3 {
    font-size: 1.7rem;
    margin: 12px 0;
}

.journal-entry p {
    color: #999;
}

.journal-entry .kilometres {
    color: #f4f4f4;
    font-family: monospace;
    font-size: 1.8rem;
    margin-top: 25px;
}

footer {
    border-top: 1px solid #242925;
    padding: 60px 8%;
    color: #777;
}

footer p {
    margin-top: 12px;
}

.copyright {
    font-size: 0.8rem;
}

@media (max-width: 800px) {
    .menu {
        display: none;
    }
    .menu-toggle { display: block; }
    .navbar { flex-wrap: wrap; gap: 12px; padding: 18px 0; }
    .menu.is-open { display: flex; width: 100%; flex-direction: column; gap: 0; }
    .menu a { padding: 12px 0; font-size: 1rem; }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero,
    .section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* Grand 0 → 100 en arrière-plan du hero */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "0 → 100";

    position: absolute;
    right: -2%;
    bottom: -5%;

    font-size: clamp(8rem, 20vw, 22rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.8;

    color: rgba(255, 255, 255, 0.15);

    white-space: nowrap;
    pointer-events: none;
    user-select: none;

    z-index: 0;
}

.navbar,
.hero-content {
    position: relative;
    z-index: 1;
}


/* Overlays / Easter eggs */

.overlays-section {
    border-top: 1px solid #242925;
}

.overlay-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.overlay-card {
    background: #0e110f;
    border: 1px solid #282e2a;
    border-radius: 6px;
    padding: 28px;
}

.overlay-card h3 {
    margin: 16px 0 12px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.05;
}

.overlay-card p {
    color: #999;
}

.overlay-tag {
    display: inline-block;
    color: #07120b;
    background: #42e584;
    padding: 5px 9px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.12em;
}

@media (max-width: 800px) {
    .overlay-grid {
        grid-template-columns: 1fr;
    }
}

/* Veille matérielle */
.logo a { color: inherit; text-decoration: none; }
.menu a.menu-active { color: #42e584; }
.watch-hero {
    min-height: 72vh;
    padding: 0 8%;
    background: radial-gradient(circle at 78% 35%, #173d2a 0%, transparent 30%), #090b0a;
}
.watch-hero-content { max-width: 950px; padding: 110px 0 95px; }
.watch-hero-content h1 { margin-bottom: 28px; }
.watch-updated { color: #777; font-size: .72rem; letter-spacing: .12em; }
.watch-updated strong { color: #ddd; }
.watch-intro { padding-bottom: 90px; }
.watch-section { padding-top: 100px; }
.watch-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.watch-heading h2 { margin-bottom: 0; }
.watch-legend { display: flex; flex-wrap: wrap; gap: 18px; color: #999; font-size: .78rem; padding-bottom: 8px; }
.watch-legend span { display: inline-flex; align-items: center; gap: 7px; }
.watch-dot { width: 8px; height: 8px; border-radius: 50%; background: #777; }
.watch-dot--good { background: #d8e7dd; }
.watch-dot--shot { background: #42e584; }
.watch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 55px; }
.watch-card { background: #151917; border: 1px solid #282e2a; border-radius: 6px; padding: 28px; display: flex; flex-direction: column; min-height: 455px; }
.watch-card--template { border-style: dashed; }
.watch-card-top { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.watch-category { color: #777; font-size: .65rem; font-weight: bold; letter-spacing: .14em; }
.watch-status { padding: 5px 8px; border-radius: 3px; font-size: .6rem; font-weight: bold; letter-spacing: .1em; }
.watch-status--watch { color: #d8e7dd; background: #29352e; }
.watch-card h3 { font-size: 1.55rem; margin: 24px 0 10px; }
.watch-reason { color: #999; min-height: 78px; }
.watch-prices { margin: 26px 0 20px; border-top: 1px solid #282e2a; }
.watch-prices div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid #282e2a; }
.watch-prices dt { color: #777; font-size: .82rem; }
.watch-prices dd { color: #f4f4f4; font-weight: bold; text-align: right; }
.watch-prices .watch-target dd { color: #42e584; }
.watch-meta { display: flex; justify-content: space-between; gap: 20px; color: #777; font-size: .72rem; margin-top: auto; }
.watch-meta strong { color: #aaa; }
.watch-note { color: #999; font-size: .88rem; margin-top: 20px; }
.watch-note strong { color: #ddd; }
.watch-rule { max-width: 850px; }
.watch-rule > p { color: #aaa; font-size: 1.05rem; }
.watch-rule strong { color: #f4f4f4; }
.watch-quote { margin-top: 34px; padding: 25px 0 25px 28px; border-left: 2px solid #42e584; color: #ddd !important; font-size: 1.25rem !important; }
@media (max-width: 900px) {
    .watch-grid { grid-template-columns: 1fr; }
    .watch-heading { align-items: flex-start; flex-direction: column; }
    .watch-legend { padding-bottom: 0; }
}
@media (max-width: 800px) {
    .watch-hero { padding-left: 6%; padding-right: 6%; }
    .watch-hero-content { padding: 80px 0; }
}
