/* ==========================================================================
   TRASS - SYSTÈME ÉDITORIAL & DESIGN SYSTEM (HAUTE PRESSE)
   Architecture unifiée : Typographie de presse, papier vergé & micro-interactions
   Optimisé pour Écrans Larges (Desktop Retina) & Mobiles (iOS/Android/iPad)
   ========================================================================== */

/* ── 1. DESIGN TOKENS & THÈMES ── */
:root {
    /* Typographies nobles */
    --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
    --font-serif: var(--font-display);
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-sans: var(--font-body);
    --font-mono: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, monospace;

    /* Palette Claire : Papier vergé ivoire & Encre pure */
    --bg-canvas: #FAF8F2;
    --bg-creme: var(--bg-canvas);
    --bg-surface: #FCFAF6;
    --bg-surface-elevated: #FFFDF9;
    --bg-subtle: rgba(20, 20, 22, 0.03);
    --bg-subtle-hover: rgba(20, 20, 22, 0.05);
    
    --text-main: #141416;
    --text-primary: var(--text-main);
    --text-muted: #5E5D59;
    --text-secondary: var(--text-muted);
    --text-faint: #9C9B94;
    
    --border-subtle: rgba(20, 20, 22, 0.06);
    --border-emphasis: rgba(20, 20, 22, 0.14);
    
    /* Couleurs Signature de l'App iOS */
    --signature-green: #244238; /* Vert sapin noble Trass (#244238) */
    --accent-green: var(--signature-green);
    --accent-green-soft: rgba(36, 66, 56, 0.08);
    --accent-vermilion: #C0392B; /* Rouge urgence Breaking */
    --accent-vermilion-soft: rgba(192, 57, 43, 0.08);
    --accent-gold: #8C6B1A; /* Or éditorial Grand Format */
    --accent-slate: #2B5F8A; /* Bleu ardoise Actualités */

    /* Échelle d'ombres physiques */
    --shadow-card: 0 12px 32px -8px rgba(20, 20, 22, 0.04), 0 1px 2px rgba(20, 20, 22, 0.03);
    --shadow-card-hover: 0 20px 48px -12px rgba(20, 20, 22, 0.08), 0 1px 3px rgba(20, 20, 22, 0.04);
    --shadow-phone: 0 32px 72px -16px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.06);
    --shadow-nav: 0 16px 32px -8px rgba(20, 20, 22, 0.04);

    /* Rayons */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-full: 9999px;
}

[data-theme="dark"] {
    /* Palette Sombre : Encre nocturne & Ardoise chaude */
    --bg-canvas: #0E0F12;
    --bg-creme: var(--bg-canvas);
    --bg-surface: #15171C;
    --bg-surface-elevated: #1C1E24;
    --bg-subtle: rgba(255, 255, 255, 0.04);
    --bg-subtle-hover: rgba(255, 255, 255, 0.08);
    
    --text-main: #F4F3ED;
    --text-primary: var(--text-main);
    --text-muted: #95948E;
    --text-secondary: var(--text-muted);
    --text-faint: #63625C;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-emphasis: rgba(255, 255, 255, 0.2);
    
    /* Couleurs Signature Dark Mode (Fidélité iOS Theme.signatureGreen) */
    --signature-green: #59C794;
    --accent-green: var(--signature-green);
    --accent-green-soft: rgba(89, 199, 148, 0.16);
    --accent-vermilion: #E54937;
    --accent-vermilion-soft: rgba(229, 73, 55, 0.15);
    --accent-gold: #D4AF37;
    --accent-slate: #4A84B4;

    --shadow-card: 0 12px 32px -8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 20px 48px -12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-phone: 0 32px 80px -16px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    --shadow-nav: 0 16px 32px -8px rgba(0, 0, 0, 0.5);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-canvas);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Texture de grain papier tactile */
.grain-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.035'/%3E%3C/svg%3E");
}
[data-theme="dark"] .grain-overlay {
    opacity: 0.02;
}

/* Fil de lecture en haut de page */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--text-main);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s linear;
}

/* ── 3. TYPOGRAPHIE ÉDITORIALE ── */
.font-serif {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-feature-settings: "kern", "liga", "dlig", "cv02", "cv04";
}

.font-mono {
    font-family: var(--font-mono);
}

.font-italic {
    font-style: italic;
}

h1, h2, h3, h4 {
    color: var(--text-main);
    font-family: var(--font-display);
    line-height: 1.1;
    text-wrap: balance;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    text-wrap: pretty;
}

.text-main { color: var(--text-main); }
.text-muted { color: var(--text-muted); }
.text-faint { color: var(--text-faint); }
.text-vermilion { color: var(--accent-vermilion); }
.text-center { text-align: center; }

/* ── 4. STRUCTURE & CONTENEURS ── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

/* ── 5. NAVIGATION HAUTE COUTURE ── */
nav.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    background: rgba(250, 248, 242, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    margin: 20px auto 0;
    max-width: 1080px;
    position: sticky;
    top: 20px;
    z-index: 100;
    box-shadow: var(--shadow-nav);
    transition: all 0.3s ease;
}

[data-theme="dark"] nav.editorial-nav {
    background: rgba(14, 15, 18, 0.85);
    border-color: var(--border-subtle);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-brand-logo {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.nav-brand-logo span {
    display: inline-block;
}

.nav-brand-arc {
    width: 44px;
    height: 6px;
    margin-top: 3px;
    display: block;
}

.nav-brand-logo:hover {
    opacity: 0.75;
}

/* Arc Signature sous le titre Hero */
.hero-title-underline-wrap {
    display: inline-block;
    position: relative;
}

.editorial-title-arc {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 220px;
    height: 12px;
    pointer-events: none;
}

.nav-edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    white-space: nowrap;
}

.live-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulseLive 2.2s infinite;
    flex-shrink: 0;
}

@keyframes pulseLive {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-main);
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: var(--bg-subtle-hover);
}

/* ── 6. BOUTONS NOBLES & CTA ── */
.btn-editorial-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--text-main);
    color: var(--bg-canvas) !important;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid var(--text-main);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-editorial-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0.92;
}

.btn-editorial-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text-main) !important;
    padding: 13px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border: 1px solid var(--border-emphasis);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-editorial-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--text-main);
}

/* ── 7. SECTION HERO ── */
.hero-editorial {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-vermilion);
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-kicker .bullet {
    font-size: 0.6rem;
}

.hero-main-title {
    font-size: clamp(3.2rem, 7.5vw, 6.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    max-width: 1000px;
}

.hero-main-title em {
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-display);
}

.hero-lead-text {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Ruban de sources indépendantes (Marquee épuré) */
.sources-marquee-section {
    width: 100%;
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.sources-marquee-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 16px;
}

.sources-marquee-track {
    display: flex;
    width: max-content;
    gap: 3rem;
    animation: marqueeScroll 28s linear infinite;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-muted);
}

.sources-marquee-track span {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 3rem;
}

.sources-marquee-track span::after {
    content: "•";
    font-size: 0.7rem;
    color: var(--border-emphasis);
}

@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

/* ── 8. COMPOSANT INTERACTIF : LE BRUIT VS LE SILENCE (SLIDER) ── */
.noise-comparison-box {
    margin: 40px auto 0;
    max-width: 1040px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-subtle);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--bg-subtle);
    gap: 12px;
}

.slider-container {
    position: relative;
    width: 100%;
    min-height: 480px;
    user-select: none;
    touch-action: pan-y;
    overflow: hidden;
}

/* Face Gauche : Le Web Bruit */
.slider-view {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.view-noise {
    background: #FFFDF9;
    color: #1A1A1A;
}
[data-theme="dark"] .view-noise {
    background: #111216;
    color: #E2E1DC;
}

.noise-ad-banner {
    background: #FFE082;
    color: #BF360C;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: flashAd 3s infinite;
}

@keyframes flashAd {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.6; }
}

.noise-cookie-popup {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 280px;
    background: var(--bg-surface);
    border: 2px solid #E53935;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-size: 0.75rem;
    line-height: 1.4;
    color: #333;
    z-index: 5;
}
[data-theme="dark"] .noise-cookie-popup {
    background: #1D1F26;
    color: #EEE;
}

/* Face Droite : Trass Silence */
.view-clarity {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-surface);
    color: var(--text-main);
    clip-path: inset(0 0 0 50%);
}

.clarity-article {
    max-width: 620px;
    margin: 0 auto;
}

.clarity-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-vermilion);
    font-weight: 600;
    margin-bottom: 12px;
}

.clarity-title {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-main);
}

.clarity-body {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
}

.clarity-body .lettrine-monumentale {
    float: left;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.75;
    margin-top: 8px;
    margin-right: 12px;
    font-weight: 700;
    color: var(--text-main);
}

/* Curseur vertical de comparaison */
.slider-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--text-main);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    touch-action: none;
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--text-main);
    color: var(--bg-canvas);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    font-size: 14px;
    cursor: ew-resize;
    touch-action: none;
}

/* ── 9. SIMULATEUR IPHONE 16 PRO INTERACTIF ── */
.iphone-simulator-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin: 60px 0;
}

.simulator-narrative {
    text-align: left;
}

.simulator-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-vermilion);
    margin-bottom: 16px;
}

.simulator-narrative h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.simulator-narrative p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Châssis iPhone CSS */
.iphone-device {
    width: 334px;
    height: 680px;
    background: var(--bg-canvas);
    border-radius: 48px;
    border: 10px solid #1C1D21;
    box-shadow: var(--shadow-phone);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.iphone-island {
    width: 84px;
    height: 22px;
    background: #000000;
    border-radius: 20px;
    margin: 8px auto 0;
    z-index: 30;
}

.iphone-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 14px 14px;
    position: relative;
    overflow: hidden;
}

.iphone-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    padding: 0 4px;
}

.iphone-counter {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    background: var(--accent-vermilion);
    color: #FFFFFF;
    padding: 2px 7px;
    border-radius: 12px;
    font-weight: 600;
}

/* Pile de cartes dans l'iPhone */
.cards-deck-container {
    flex: 1;
    position: relative;
    margin-bottom: 8px;
}

.deck-card {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    cursor: grab;
    user-select: none;
}

.deck-card:active {
    cursor: grabbing;
}

.deck-card.swiped-away {
    transform: translateX(140%) rotate(15deg) !important;
    opacity: 0 !important;
    pointer-events: none;
}

/* Bannière d'actualité haute couture (TrassCardView) */
.sim-card-banner {
    height: 128px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.sim-card-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.55));
    pointer-events: none;
}

.banner-geopolitics {
    background: linear-gradient(135deg, #1A2D42 0%, #274363 60%, #152435 100%);
}

.banner-culture {
    background: linear-gradient(135deg, #38241B 0%, #5C3A2B 60%, #26160F 100%);
}

.banner-science {
    background: linear-gradient(135deg, #142930 0%, #1F424D 60%, #0E1D22 100%);
}

/* Boutons d'action liquides blancs en haut à droite */
.sim-card-actions {
    position: absolute;
    top: 8px; right: 8px;
    display: flex;
    gap: 6px;
    z-index: 5;
}

.sim-action-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(252, 250, 246, 0.94);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
}

/* Capsule Catégorie en bas de la bannière */
.sim-category-capsule {
    position: absolute;
    bottom: 8px; left: 10px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    text-transform: uppercase;
}

.sim-capsule-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #FFFFFF;
}

/* Corps éditorial de la carte */
.sim-card-content {
    padding: 12px 14px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.card-summary {
    font-family: var(--font-display);
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-muted);
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-faint);
}

/* Barre d'onglets Flottante Signature Trass (Simulateur) */
.iphone-sim-tabbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 5px 8px;
    margin: 4px 4px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.sim-tab-item {
    color: var(--text-faint);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    transition: color 0.2s ease;
}

.sim-tab-item.sim-tab-active {
    color: var(--text-main);
}

.sim-tab-t {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
    display: block;
}

.sim-tab-arc {
    width: 16px;
    height: 3px;
    margin-top: 2px;
    display: block;
}

/* Écran final "Vous êtes à jour" */
.completion-card {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-surface);
    border-radius: 22px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.completion-stamp {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--signature-green);
    color: var(--signature-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(-8deg);
    margin-bottom: 16px;
}

.iphone-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-swipe-trigger {
    background: var(--bg-surface);
    border: 1px solid var(--border-emphasis);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-swipe-trigger:hover {
    background: var(--text-main);
    color: var(--bg-canvas);
}

/* ── 10. BENTO ARTISANAT ÉDITORIAL (4 PILIERS) ── */
.editorial-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.bento-cell {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--border-emphasis);
}

.bento-cell.col-8 { grid-column: span 8; }
.bento-cell.col-4 { grid-column: span 4; }
.bento-cell.col-6 { grid-column: span 6; }

.cell-kicker {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 12px;
}

.cell-title {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cell-body {
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.bento-visual-quote {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg-subtle);
    border-left: 2px solid var(--text-main);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* ── COMPOSANTS INTERACTIFS BENTO (SALLE DES PREUVES & RITUEL) ── */
.perspective-tabs {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.perspective-btn {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 7px 15px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.perspective-btn:hover {
    background: var(--bg-subtle-hover);
    color: var(--text-main);
}

.perspective-btn.active {
    background: var(--text-main);
    color: var(--bg-canvas);
    border-color: var(--text-main);
}

.perspective-preview-card {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-vermilion);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.perspective-source-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-vermilion);
    margin-bottom: 6px;
    font-weight: 600;
}

.perspective-quote-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
}


/* ── 11. MANIFESTE & ENCRAGE AU SCROLL ── */
.manifesto-section {
    padding: 140px 0;
    text-align: center;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.manifesto-inner {
    max-width: 860px;
    margin: 0 auto;
}

.manifesto-kicker {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-vermilion);
    margin-bottom: 24px;
}

.manifesto-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    line-height: 1.35;
    font-weight: 500;
    color: var(--text-main);
}

.ink-word {
    display: inline-block;
    margin-right: 0.32em;
    transition: opacity 0.4s ease, color 0.4s ease;
    opacity: 0.18;
}

.ink-word.ink-revealed {
    opacity: 1;
}

/* ── 12. CALL TO ACTION & PIED DE PAGE ── */
.cta-grand-finale {
    text-align: center;
    padding: 120px 24px;
}

.cta-grand-finale h2 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    margin-bottom: 20px;
}

.cta-grand-finale p {
    font-size: 1.25rem;
    margin-bottom: 36px;
}

footer.editorial-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 40px;
    font-size: 0.9rem;
}

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

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

/* ── 13. ANIMATIONS D'APPARITION SOIGNÉES ── */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ── 14. ADAPTATION RESPONSIVE DE HAUTE PRÉCISION (MOBILE & TABLETTE) ──
   ========================================================================== */

/* ── Tablette (max-width: 1024px) ── */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    nav.editorial-nav {
        margin: 16px 20px 0;
        padding: 12px 20px;
    }

    .iphone-simulator-section {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .editorial-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .bento-cell.col-8,
    .bento-cell.col-4,
    .bento-cell.col-6 {
        grid-column: span 2;
    }
}

/* ── Mobile Standard & Petit Écran (max-width: 768px) ── */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    /* Navigation Mobile */
    nav.editorial-nav {
        margin: 12px 14px 0;
        padding: 10px 14px;
    }

    .nav-brand-logo {
        font-size: 1.15rem;
        letter-spacing: 0.12em;
    }

    .nav-edition-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .nav-link {
        font-size: 0.82rem;
    }

    .btn-editorial-primary {
        padding: 9px 18px;
        font-size: 0.84rem;
    }

    .btn-editorial-secondary {
        padding: 9px 18px;
        font-size: 0.84rem;
    }

    /* Hero Section Mobile */
    .hero-editorial {
        min-height: auto;
        padding: 40px 0 50px;
    }

    .hero-main-title {
        font-size: clamp(2.4rem, 9vw, 4.2rem);
        margin-bottom: 20px;
    }

    .hero-lead-text {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }

    .hero-actions .btn-editorial-primary,
    .hero-actions .btn-editorial-secondary {
        width: 100%;
    }

    .sources-marquee-section {
        margin-top: 40px;
        padding-top: 18px;
    }

    .sources-marquee-track {
        gap: 2rem;
        font-size: 1rem;
    }

    .sources-marquee-track span {
        gap: 2rem;
    }

    /* Slider Bruit vs Silence Mobile */
    .noise-comparison-box {
        margin-top: 24px;
        border-radius: var(--radius-lg);
    }

    .comparison-header {
        font-size: 0.68rem;
        padding: 12px 16px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .slider-container {
        min-height: 440px;
    }

    .slider-view {
        padding: 24px 18px;
    }

    .clarity-title {
        font-size: 1.45rem;
        margin-bottom: 14px;
    }

    .clarity-body {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .clarity-body .lettrine-monumentale {
        font-size: 2.8rem;
        margin-right: 8px;
    }

    .noise-cookie-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 12px;
    }

    .slider-handle-button {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    /* Simulateur iPhone Mobile */
    .iphone-simulator-section {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .simulator-narrative {
        text-align: center;
    }

    .simulator-narrative h2 {
        font-size: clamp(2rem, 6.5vw, 3rem);
    }

    .simulator-narrative p {
        font-size: 1.02rem;
    }

    .iphone-device {
        width: 290px;
        height: 560px;
        border-radius: 44px;
        border-width: 9px;
    }

    .card-title {
        font-size: 1.05rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .card-summary {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    /* Bento Grid Mobile */
    .editorial-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .bento-cell {
        padding: 26px 20px;
        border-radius: var(--radius-md);
    }

    .bento-cell.col-8,
    .bento-cell.col-4,
    .bento-cell.col-6 {
        grid-column: span 1;
    }

    .cell-title {
        font-size: 1.45rem;
    }

    .cell-body {
        font-size: 0.95rem;
    }

    .bento-visual-quote {
        font-size: 0.98rem;
        padding: 12px 14px;
    }

    .perspective-tabs {
        gap: 6px;
    }

    .perspective-btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .perspective-quote-text {
        font-size: 0.95rem;
    }

    /* Manifeste Mobile */
    .manifesto-section {
        padding: 80px 16px;
    }

    .manifesto-text {
        font-size: clamp(1.45rem, 6vw, 2.2rem);
        line-height: 1.4;
    }

    .ink-word {
        margin-right: 0.26em;
    }

    /* CTA & Footer Mobile */
    .cta-grand-finale {
        padding: 80px 16px;
    }

    .cta-grand-finale h2 {
        font-size: clamp(2.2rem, 7vw, 3.4rem);
    }

    .cta-grand-finale p {
        font-size: 1.05rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
        gap: 16px;
        font-size: 0.85rem;
    }
}

/* ── Téléphone Compact / Très Petit Écran (max-width: 420px) ── */
@media (max-width: 420px) {
    nav.editorial-nav {
        margin: 8px 8px 0;
        padding: 8px 12px;
    }

    .nav-edition-badge span:not(.live-pulse) {
        display: none;
    }

    .nav-edition-badge {
        padding: 4px;
    }

    .nav-brand-logo {
        font-size: 1.05rem;
        letter-spacing: 0.1em;
    }

    .nav-link {
        display: none;
    }

    .iphone-device {
        width: 270px;
        height: 520px;
        border-width: 8px;
    }

    .deck-card {
        padding: 16px;
    }
}

/* ==========================================================================
   ── 15. EFFETS ULTRA-MODERNES HAUTE PRESSE (SANS VIBE CODING) ──
   ========================================================================== */

/* ── 1. CALCULATEUR DE SÉRÉNITÉ (ANTI-DOOMSCROLL) ── */
.serenity-calculator-box {
    margin: 40px auto 0;
    max-width: 1040px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.calc-slider-wrapper {
    margin: 36px 0;
}

.calc-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.calc-slider-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-vermilion);
}

.calc-range-input {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--bg-subtle);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.calc-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text-main);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--bg-surface);
    transition: transform 0.15s ease;
}

.calc-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.calc-stat-card {
    background: var(--bg-subtle);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    text-align: left;
    transition: transform 0.25s ease;
}

.calc-stat-card:hover {
    transform: translateY(-2px);
}

.calc-stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
    margin-bottom: 8px;
}

.calc-stat-number.highlight-red {
    color: var(--accent-vermilion);
}

.calc-stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 6px;
}

.calc-stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ── 2. CADRAN CHRONOBIOLOGIQUE 24H (LE RYTHME DE VIE) ── */
.chronodial-wrapper {
    margin: 40px auto 0;
    max-width: 1040px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-card);
}

.chronodial-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.chronodial-step-btn {
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.chronodial-step-btn:hover {
    background: var(--bg-subtle-hover);
    border-color: var(--border-emphasis);
}

.chronodial-step-btn.active {
    background: var(--text-main);
    color: var(--bg-canvas);
    border-color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.step-time {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.step-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    opacity: 0.8;
}

.chronodial-display-card {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    border-left: 4px solid var(--accent-vermilion);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.display-title-block h4 {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 8px;
}

.display-title-block span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-vermilion);
    font-weight: 600;
}

.display-desc-block p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
}

/* ── 3. COLOPHON & SCEAU DE CIRE (GARANTIE D'ARTISANAT) ── */
.editorial-colophon-section {
    margin: 80px auto 40px;
    max-width: 900px;
    padding: 36px 40px;
    border: 1px dashed var(--border-emphasis);
    border-radius: var(--radius-lg);
    background: var(--bg-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.colophon-text-side {
    flex: 1;
}

.colophon-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-vermilion);
    margin-bottom: 8px;
    font-weight: 600;
}

.colophon-details {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.wax-seal-interactive {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #E54937, #9B1C0F);
    color: #FFFDF9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(155, 28, 15, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    user-select: none;
    flex-shrink: 0;
}

.wax-seal-interactive:hover {
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 12px 32px rgba(155, 28, 15, 0.5);
}

.wax-seal-interactive:active {
    transform: scale(0.95);
}

.wax-seal-t {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
    color: #FFFDF9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.wax-seal-sub {
    font-family: var(--font-mono);
    font-size: 0.48rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
    color: #FFFDF9;
    margin-top: 2px;
}

/* ── ADAPTATION RESPONSIVE POUR LES NOUVEAUX COMPOSANTS ── */
@media (max-width: 860px) {
    .serenity-calculator-box,
    .chronodial-wrapper {
        padding: 28px 20px;
    }

    .calc-results-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .chronodial-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .chronodial-display-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 20px;
    }

    .editorial-colophon-section {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
}


/* ==========================================================================
   ── 16. LE PINNACLE DU CRAFT WEB (HAUTE HORLOGERIE & MATÉRIALITÉ) ──
   ========================================================================== */

/* ── 1. CURSEUR MAGNÉTIQUE ÉDITORIAL (DESKTOP SEULEMENT) ── */
@media (pointer: fine) {
    .editorial-cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background-color: var(--accent-vermilion);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.08s ease-out, width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, opacity 0.25s ease;
        opacity: 0;
    }

    .editorial-cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        border: 1px solid var(--text-main);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.18s ease-out, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }

    body.cursor-active .editorial-cursor-dot,
    body.cursor-active .editorial-cursor-ring {
        opacity: 0.75;
    }

    body.cursor-hovering .editorial-cursor-dot {
        width: 14px;
        height: 14px;
        background-color: var(--text-main);
    }

    body.cursor-hovering .editorial-cursor-ring {
        width: 52px;
        height: 52px;
        border-color: var(--accent-vermilion);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ── 2. LA LOUPE D'INVESTIGATION (FACT-CHECKING LENS) ── */
.fact-lens-container {
    margin: 40px auto 0;
    max-width: 1040px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.lens-interactive-stage {
    position: relative;
    min-height: 240px;
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: crosshair;
    user-select: none;
    overflow: hidden;
}

.lens-rumor-layer {
    position: relative;
    z-index: 1;
}

.lens-rumor-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #E53935;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 8px;
}

.lens-rumor-title {
    font-family: sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #333333;
    opacity: 0.8;
}
[data-theme="dark"] .lens-rumor-title {
    color: #DDDDDD;
}

.lens-truth-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-surface);
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    clip-path: circle(70px at 50% 50%);
    box-shadow: inset 0 0 0 2px var(--accent-vermilion);
}

.lens-truth-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 8px;
}

.lens-truth-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

.lens-helper-hint {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-faint);
    text-align: center;
    margin-top: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── 3. TYPOGRAPHIE OPEN-TYPE SUPRÊME ── */
.font-serif {
    font-feature-settings: "kern" 1, "liga" 1, "dlig" 1, "onum" 1, "cv02" 1, "cv04" 1;
}

/* ── 4. REPOS VISUEL (ACCESSIBILITÉ PREFERS-REDUCED-MOTION) ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ── MODE LECTURE IMMERSION DANS L'IPHONE ── */
.iphone-reader-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.iphone-reader-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reader-back-btn {
    align-self: flex-start;
    background: var(--bg-subtle);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    cursor: pointer;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s ease;
}

.reader-back-btn:hover {
    background: var(--bg-subtle-hover);
}

.reader-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--text-main);
}

.reader-body {
    font-family: var(--font-display);
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text-main);
}

.reader-body .reader-lettrine {
    float: left;
    font-size: 2.4rem;
    line-height: 0.8;
    margin-top: 4px;
    margin-right: 6px;
    font-weight: 700;
}

.btn-card-read {
    background: transparent;
    border: none;
    color: var(--accent-vermilion);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
}

.btn-card-read:hover {
    opacity: 0.8;
}

/* Filet de séparation noble de presse */
.editorial-section-divider {
    max-width: 240px;
    margin: 60px auto;
    border: 0;
    border-top: 1px solid var(--border-emphasis);
    position: relative;
    text-align: center;
}

.editorial-section-divider::after {
    content: "✦ ✦ ✦";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-canvas);
    padding: 0 12px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-faint);
}


/* ==========================================================================
   ── 17. GRANDES SECTIONS ÉDITORIALES COMPLÉMENTAIRES ──
   ========================================================================== */

/* ── 1. TABLEAU DE TRANSPARENCE : TRASS VS L'INFOBÉSITÉ ── */
.transparency-table-box {
    margin: 40px auto 0;
    max-width: 1040px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
    overflow-x: auto;
}

.editorial-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.editorial-table th {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    padding: 16px 20px;
    border-bottom: 2px solid var(--border-subtle);
}

.editorial-table th.col-highlight {
    color: var(--accent-vermilion);
    background: var(--accent-vermilion-soft);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.editorial-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.editorial-table td.col-highlight {
    background: var(--accent-vermilion-soft);
    font-weight: 600;
    color: var(--text-main);
}

.editorial-table tr:last-child td {
    border-bottom: none;
}

.table-badge-good {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-green);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
}

.table-badge-bad {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E53935;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
}


/* ── 3. LES VOIX DES LECTEURS (TÉMOIGNAGES NOBLES) ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-main);
}

.author-role {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-faint);
}

/* Fallback d'apparition instantanée */
.reveal-fade-up {
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive Table & Kiosk */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SECTION STATS ── */
.stats-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--border-subtle);
}

.stat-cell {
    background: var(--bg-surface);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.2s ease;
}

.stat-cell:hover {
    background: var(--bg-subtle-hover);
}

.stat-cell-accent {
    background: var(--text-main);
}

.stat-cell-accent:hover {
    background: var(--text-main);
    opacity: 0.95;
}

.stat-cell-accent .stat-number,
.stat-cell-accent .stat-label,
.stat-cell-accent .stat-desc,
.stat-cell-accent .stat-unit {
    color: var(--bg-canvas) !important;
}

.stat-number {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-main);
}

.stat-unit {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text-muted);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-faint);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-cell {
        padding: 28px 24px;
    }
}

/* ── SECTION FAQ ── */
.faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--border-subtle);
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--text-muted);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-faint);
    line-height: 1;
    transition: transform 0.25s ease, color 0.2s ease;
    font-family: var(--font-body);
}

.faq-item-open .faq-icon {
    color: var(--text-main);
}

.faq-answer {
    padding: 0 4px 28px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.faq-answer strong {
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 20px 0;
        font-size: 1rem;
    }
}

/* ==========================================================================
   PAGE PRINCIPALE : ÉDITION BROADSHEET HAUTE PRESSE (ADN TRASS PUR)
   Esthétique de grand journal imprimé : typographie noble, filets d'imprimerie, zéro artifice SaaS/IA
   ========================================================================== */

.broadsheet-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-canvas);
    color: var(--text-main);
    position: relative;
    overflow-x: hidden;
}

/* ── 1. En-tête de Presse & Manchette ── */
.broadsheet-header {
    width: 100%;
    padding: 32px 24px 0;
}

.broadsheet-header-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-bottom: 20px;
}

.masthead-left {
    display: flex;
    align-items: center;
}

.masthead-date {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-faint);
}

.masthead-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.masthead-title {
    text-decoration: none;
    color: var(--text-main);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.2s ease;
}

.masthead-title:hover {
    opacity: 0.9;
}

.masthead-wordmark {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-indent: 0.26em;
    line-height: 1;
    display: block;
}

/* Trait vert signature sous le logo TRASS */
.masthead-signature-stroke {
    display: block;
    margin-top: 5px;
    color: var(--signature-green);
    overflow: visible;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.masthead-title:hover .masthead-signature-stroke {
    transform: scaleX(1.12);
}

.masthead-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Bouton de bascule de thème discret */
.press-theme-toggle {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.press-theme-toggle:hover {
    border-color: var(--border-emphasis);
    color: var(--text-main);
    background: var(--bg-subtle);
}

.press-theme-toggle .sun-icon {
    display: none;
}
.press-theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .press-theme-toggle .sun-icon {
    display: none;
}
[data-theme="light"] .press-theme-toggle .moon-icon {
    display: block;
}
[data-theme="dark"] .press-theme-toggle .sun-icon {
    display: block;
}
[data-theme="dark"] .press-theme-toggle .moon-icon {
    display: none;
}

/* Filet de séparation d'imprimerie */
.masthead-rule {
    max-width: 900px;
    margin: 0 auto;
    height: 1px;
    background: var(--border-subtle);
}

/* ── 2. Corps de Lecture (Article Broadsheet) ── */
.broadsheet-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 84px;
}

.broadsheet-column {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

.article-header {
    text-align: left;
    margin-bottom: 28px;
}

.article-rubric {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--signature-green);
    display: block;
    margin-bottom: 18px;
    text-align: left;
}

[data-theme="dark"] .article-rubric {
    color: #5BA88E;
}

.article-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text-main);
    text-wrap: balance;
    margin: 0;
    text-align: left;
}

/* Filet courbé signature Trass (ADN de marque) */
.trass-lead-rule {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0 34px;
    color: var(--signature-green);
}

.trass-signature-stroke {
    display: block;
    overflow: visible;
}

/* Filet orné calé à gauche (repli) */
.article-lead-rule {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    max-width: 140px;
    margin: 20px 0 34px;
    color: var(--signature-green);
}

.rule-line {
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.rule-fleuron {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Typographie & Récit */
.article-prose {
    margin-bottom: 56px;
    text-align: left;
}

.prose-lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.75;
    color: var(--text-main);
    margin-bottom: 24px;
    text-wrap: pretty;
    text-align: left;
}

.article-prose p:not(.prose-lead) {
    font-family: var(--font-body);
    font-size: 1.06rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 22px;
    text-wrap: pretty;
    text-align: left;
}

/* ── 3. Avis de Parution — L'Édition iPhone (Haut Design & Modernité) ── */
.parution-showcase {
    position: relative;
    margin-top: 52px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(170deg, #FFFFFF 0%, #F9F7F1 100%);
    border: 1px solid rgba(20, 20, 22, 0.07);
    box-shadow: 0 20px 48px -12px rgba(20, 20, 22, 0.06), 0 2px 6px rgba(20, 20, 22, 0.03);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .parution-showcase {
    background: linear-gradient(170deg, #181B21 0%, #111317 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 64px -16px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(89, 199, 148, 0.12) inset;
}

.parution-showcase:hover {
    border-color: rgba(36, 66, 56, 0.2);
    box-shadow: 0 28px 56px -16px rgba(20, 20, 22, 0.1), 0 4px 12px rgba(20, 20, 22, 0.04);
}

[data-theme="dark"] .parution-showcase:hover {
    border-color: rgba(89, 199, 148, 0.28);
    box-shadow: 0 32px 72px -16px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(89, 199, 148, 0.22) inset;
}

/* Trait Signature Vert Trass en tête du composant */
.showcase-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--signature-green) 20%, var(--signature-green) 80%, transparent 100%);
    opacity: 0.9;
    z-index: 2;
}

/* Lueur ambiante d'arrière-plan */
.showcase-glow {
    position: absolute;
    top: -40px;
    left: 10%;
    right: 10%;
    height: 120px;
    background: radial-gradient(ellipse at center, var(--signature-green), transparent 70%);
    opacity: 0.08;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

[data-theme="dark"] .showcase-glow {
    opacity: 0.15;
    filter: blur(50px);
}

/* Conteneur interne */
.showcase-card {
    position: relative;
    z-index: 3;
    padding: 36px 36px 32px;
}

/* En-tête : Icône Trass + Badge de statut */
.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}

/* Icône physique Trass iOS */
.showcase-icon-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    perspective: 800px;
}

.showcase-app-icon {
    display: block;
    width: 76px;
    height: 76px;
    border-radius: 18px;
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.12);
    object-fit: cover;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    user-select: none;
    -webkit-user-drag: none;
}

[data-theme="dark"] .showcase-app-icon {
    box-shadow: 0 14px 32px -6px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.showcase-icon-wrapper:hover .showcase-app-icon {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Badge de statut avec point radar pulsant */
.showcase-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-green-soft);
    border: 1px solid rgba(36, 66, 56, 0.18);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--signature-green);
}

[data-theme="dark"] .showcase-status-badge {
    border-color: rgba(89, 199, 148, 0.28);
}

/* Radar pulse dot */
.status-pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signature-green);
    flex-shrink: 0;
}

.status-pulse-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: var(--signature-green);
    opacity: 0.7;
    animation: status-radar-pulse 2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

@keyframes status-radar-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    60% {
        transform: scale(2.4);
        opacity: 0;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.status-badge-sep {
    opacity: 0.4;
}

.status-badge-version {
    opacity: 0.85;
}

/* Titre & Description */
.showcase-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin: 0 0 10px 0;
    text-align: left;
}

.showcase-desc {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 22px 0;
    max-width: 660px;
    text-align: left;
}

/* Puces de distinctions / features */
.showcase-feature-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(20, 20, 22, 0.03);
    border: 1px solid var(--border-subtle);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    user-select: none;
}

[data-theme="dark"] .feature-pill {
    background: rgba(255, 255, 255, 0.04);
}

.feature-pill:hover {
    background: var(--accent-green-soft);
    border-color: rgba(36, 66, 56, 0.2);
    color: var(--text-main);
    transform: translateY(-1px);
}

[data-theme="dark"] .feature-pill:hover {
    border-color: rgba(89, 199, 148, 0.3);
}

.pill-sparkle {
    color: var(--signature-green);
    font-size: 0.75rem;
}

/* Actions interactives */
.showcase-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.showcase-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 12px;
    background: var(--text-main);
    color: var(--bg-canvas);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.005em;
    box-shadow: 0 4px 14px rgba(20, 20, 22, 0.12);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, opacity 0.2s ease;
}

.showcase-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(20, 20, 22, 0.18);
    opacity: 0.96;
}

.showcase-btn-primary:active {
    transform: translateY(0);
}

.apple-vector-icon {
    flex-shrink: 0;
}

.arrow-icon {
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-btn-primary:hover .arrow-icon {
    transform: translateX(3px);
}

.showcase-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.showcase-link-secondary:hover {
    color: var(--text-main);
    background-color: var(--bg-subtle-hover);
}

.showcase-link-secondary svg {
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.showcase-link-secondary:hover svg {
    opacity: 1;
    transform: translate(1px, -1px);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .showcase-card {
        padding: 28px 20px 24px;
    }
    
    .showcase-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .showcase-app-icon {
        width: 68px;
        height: 68px;
        border-radius: 16px;
    }

    .showcase-title {
        font-size: 1.45rem;
    }

    .showcase-desc {
        font-size: 0.95rem;
    }

    .showcase-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .showcase-btn-primary {
        width: 100%;
    }

    .showcase-link-secondary {
        justify-content: center;
    }
}

/* ── 4. Pied de Page de Presse ── */
.broadsheet-footer {
    width: 100%;
    padding: 0 24px 32px;
}

.footer-hairline {
    max-width: 900px;
    margin: 0 auto 24px;
    height: 1px;
    background: var(--border-subtle);
}

.broadsheet-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-faint);
    font-family: var(--font-body);
}

.footer-col-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-main);
}

.footer-sep {
    opacity: 0.4;
}

.footer-legal {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.02em;
}

.footer-col-right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-col-right a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col-right a:hover {
    color: var(--text-main);
}

.nav-sep {
    opacity: 0.3;
}

/* ── 5. Responsive Mobile & Tablette ── */
@media (max-width: 768px) {
    .broadsheet-header {
        padding: 20px 18px 0;
    }

    .broadsheet-header-inner {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .masthead-left {
        display: none;
    }

    .masthead-center {
        align-items: flex-start;
        text-align: left;
    }

    .masthead-wordmark {
        font-size: 1.7rem;
        letter-spacing: 0.2em;
        text-indent: 0.2em;
    }

    .broadsheet-main {
        padding: 48px 18px 64px;
    }

    .article-headline {
        font-size: 2.25rem;
    }

    .prose-lead {
        font-size: 1.18rem;
        line-height: 1.65;
    }

    .article-prose p:not(.prose-lead) {
        font-size: 1rem;
        line-height: 1.75;
    }

    .parution-notice {
        padding: 24px 16px;
    }

    .broadsheet-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}
