/* ============================================================
   ARRITOS TEMPLE — Landing Page Styles
   Palette steampunk : bronze, gold, noir, accent vert Hey Arri
   ============================================================ */

:root {
    --color-bg: #0A0908;
    --color-bg-2: #1A1410;
    --color-bg-3: #2A1E14;
    --color-bronze: #B08D57;
    --color-bronze-dark: #6B5435;
    --color-gold: #FFA500;
    --color-gold-soft: #C9A876;
    --color-gold-bright: #FFD86A;
    --color-green: #1AFF1A;
    --color-green-soft: #B8FF8A;
    --color-text: #E8DCC4;
    --color-text-muted: #8B7355;
    --color-text-dim: #5A4A3A;
    --color-card: rgba(20, 15, 10, 0.85);
    --color-card-hover: rgba(35, 25, 15, 0.92);
    --color-border: rgba(176, 141, 87, 0.3);
    --color-border-strong: rgba(176, 141, 87, 0.6);

    --font-display: 'MedievalSharp', cursive;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --shadow-gold: 0 0 24px rgba(255, 165, 0, 0.25);
    --shadow-green: 0 0 24px rgba(26, 255, 26, 0.4);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    overscroll-behavior-y: none;
}

/* OptiAct H — kill iOS tap flash for the "soap bubble" feel (Sacha 09/06) */
* { -webkit-tap-highlight-color: transparent; }

/* OptiAct A — accessibility opt-out (respect prefers-reduced-motion) */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* STARRY BACKGROUND */
#starry-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at top, rgba(255, 165, 0, 0.05) 0%, transparent 70%),
                radial-gradient(ellipse at bottom, rgba(26, 255, 26, 0.03) 0%, transparent 60%);
}

/* Scroll Progress */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-bronze), var(--color-gold), var(--color-gold-bright));
    box-shadow: var(--shadow-gold);
    transition: width 0.1s linear;
}

/* Page backgrounds */
.page-backgrounds { position: fixed; inset: 0; z-index: -1; }
.page-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.page-bg.active { opacity: 1; }
.page-bg-1 { background: linear-gradient(180deg, #0A0908 0%, #1A1410 100%); }
.page-bg-2 { background: linear-gradient(180deg, #1A1410 0%, #2A1E14 100%); }
.page-bg-3 { background: linear-gradient(180deg, #2A1E14 0%, #1A1410 100%); }
.page-bg-4 { background: linear-gradient(180deg, #1A1410 0%, #0A0908 100%); }
.page-bg-5 { background: linear-gradient(180deg, #0A0908 0%, #1A1410 100%); }
.page-bg-6 { background: linear-gradient(180deg, #1A1410 0%, #0A0908 100%); }

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(10, 9, 8, 0.75);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-video {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
}
.promo-mute-btn {
    margin-left: 12px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.2s, filter 0.3s;
    position: relative;
}
.promo-mute-btn img { width: 58px; height: 58px; object-fit: contain; display: block; flex-shrink: 0; }
.promo-mute-btn:hover { transform: scale(1.07); }
.promo-mute-btn:active { transform: scale(0.94); }
@media (max-width: 600px) {
    .promo-mute-btn { width: 32px; height: 32px; margin-left: 8px; }
}
.nav-brand {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-text);
    letter-spacing: 0.5px;
}
.brand-accent { color: var(--color-gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
    transition: var(--transition);
}
.nav-link:hover { opacity: 1; color: var(--color-gold); }

.lang-toggle {
    position: relative;
    display: flex;
    background: rgba(176, 141, 87, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 4px;
    cursor: pointer;
}
.lang-option {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-muted);
    z-index: 2;
    transition: color 0.3s;
}
.lang-option.active { color: var(--color-bg); }
.lang-slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: 38px;
    background: var(--color-gold);
    border-radius: var(--radius-pill);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-toggle[data-active="en"] .lang-slider { transform: translateX(38px); }

.nav-cta {
    padding: 8px 18px;
    background: var(--color-gold);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}
/* Bouton Notify Me navbar en image porthole (Sacha 24/05) */
.nav-cta-img {
    display: block;
    line-height: 0;
    text-decoration: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.nav-cta-img img { display: block; height: 65px; width: auto; }
.nav-cta-img:hover {
    filter: drop-shadow(0 0 10px rgba(124, 179, 66, 0.8)) drop-shadow(0 0 22px rgba(124, 179, 66, 0.45));
    transform: scale(1.05);
}
/* Bouton Be Notified du hero — ovale agrandi (Sacha 24/05) */
.notify-btn.notify-btn-hero img { height: 114px; }

/* Médaillon centré sur la ligne du titre des pages footer (Sacha 26/05) */
.legal-head { position: relative; }
.legal-medal-wrap {
    position: absolute;
    top: calc(50% + 70px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    pointer-events: none;
}
.legal-medal-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; transform: scale(1.12); }
.legal-medal-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0) 55%, rgba(255, 165, 0, 0.5) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}
/* Médaillon centré en BAS de page footer (Sacha 26/05) */
.legal-medal-bottom {
    position: relative;
    width: 92px;
    height: 92px;
    margin: 56px auto 8px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}
.legal-medal-bottom img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; transform: scale(1.12); }
.legal-medal-bottom::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0) 55%, rgba(255, 165, 0, 0.5) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(255, 165, 0, 0.5); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 24px 60px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    min-height: 100%;
    z-index: 0;
}
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}
.hero-top-badges {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(176, 141, 87, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--color-gold-soft);
    text-decoration: none;
    transition: var(--transition);
}
.badge-logo-wrap {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin: -16px 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.badge-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.2); /* resserre le cercle autour du médaillon */
}
/* glow interne vert mousse static — masque le pourtour noir brut */
.badge-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0) 50%, rgba(255, 165, 0, 0.55) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.hero-badge { cursor: pointer; }
.hero-badge:hover { border-color: rgba(124, 179, 66, 0.5); transform: translateY(-1px); }
.hero-badge:hover .badge-logo-wrap {
    box-shadow: 0 0 12px rgba(124, 179, 66, 0.75), 0 0 26px rgba(124, 179, 66, 0.4);
    transform: scale(1.06);
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 8px var(--color-green);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.15;
    margin-bottom: 24px;
}
.title-line { display: block; color: var(--color-text); margin: 4px 0; min-height: 1.15em; }
.title-gold { color: var(--color-gold); text-shadow: 0 0 24px rgba(255, 165, 0, 0.4); }

.hero-subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-subtitle strong { color: var(--color-gold-soft); font-weight: 600; }

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-bright));
    color: var(--color-bg);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255, 165, 0, 0.4); }
.btn-ghost {
    background: rgba(176, 141, 87, 0.08);
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
}
.btn-ghost:hover { background: rgba(176, 141, 87, 0.15); transform: translateY(-2px); }
.btn-voice {
    background: rgba(26, 255, 26, 0.08);
    color: var(--color-green-soft);
    border: 1px solid rgba(26, 255, 26, 0.3);
    padding: 12px 22px;
    cursor: pointer;
}
.btn-voice:hover { background: rgba(26, 255, 26, 0.15); box-shadow: var(--shadow-green); }
.btn-voice.active { animation: voicePulse 0.6s ease-out; }
@keyframes voicePulse {
    0% { box-shadow: 0 0 0 0 rgba(26, 255, 26, 0.7); }
    100% { box-shadow: 0 0 0 30px rgba(26, 255, 26, 0); }
}
.hey-arri-btn-img { width: 36px; height: 36px; border-radius: 50%; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-gold);
    text-shadow: 0 0 16px rgba(255, 165, 0, 0.3);
}
/* ∞ (Private by design) — glyphe naturellement petit, agrandi (Sacha 28/05) */
.stat-infinity { transform: scale(2.5); transform-origin: center; }
.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-top: 6px;
}

.hero-parallax {
    position: absolute;
    right: 20px;
    top: 83.5vh;
    bottom: auto;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
}
/* Photo archère steampunk à droite du hero — absolue, n'affecte pas le flux (Sacha 24/05) */
.hero-archer {
    position: absolute;
    right: 0;
    top: 50vh;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    height: 80vh;
    opacity: 0.85;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 16%);
    mask-image: linear-gradient(to right, transparent 0%, #000 16%);
}
.hero-archer img,
.hero-archer video { height: 100%; width: auto; display: block; }
/* Réserve le ratio dès le départ → pas de saut de taille au chargement de la vidéo (Sacha 24/05) */
.hero-archer video { aspect-ratio: 1080 / 1800; }
@media (max-width: 1100px) {
    .hero-archer { display: none; }
}
.hero-parallax .parallax-target {
    width: 287px;
    height: auto;
    filter: contrast(1.05) drop-shadow(0 0 2px rgba(0, 0, 0, 0.95)) drop-shadow(0 3px 7px rgba(0, 0, 0, 0.9)) drop-shadow(0 12px 32px rgba(176, 141, 87, 0.3)) brightness(0.9);
    transition: transform 0.4s ease-out;
}

/* SECTIONS */
section { position: relative; padding: 100px 24px; z-index: 1; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(176, 141, 87, 0.12);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    color: var(--color-gold-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.goldor-badge { background: rgba(255, 165, 0, 0.15); color: var(--color-gold); border-color: rgba(255, 165, 0, 0.3); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.25;
}
.section-subtitle {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FEATURES — fond animé "cathédrale" (Sacha 25/05) */
#features { position: relative; overflow: hidden; }
#features .cathedral-bg { position: absolute; inset: 0; z-index: 0; }
#features .cathedral-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#features .cathedral-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#features .section-inner { position: relative; z-index: 2; }

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.feature-card:hover {
    transform: translateY(-4px);
    background: var(--color-card-hover);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card);
}
.feature-hey-arri { border-color: rgba(26, 255, 26, 0.25); }
.feature-hey-arri:hover { border-color: rgba(26, 255, 26, 0.5); box-shadow: 0 4px 24px rgba(26, 255, 26, 0.15); }
.feature-icon {
    position: relative;
    width: 104px;
    height: 104px;
    margin-bottom: 18px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(124, 179, 66, 0.5), 0 0 42px rgba(124, 179, 66, 0.22);
}
.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, rgba(124, 179, 66, 0) 38%, rgba(124, 179, 66, 0.32) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-gold-soft);
    margin-bottom: 12px;
}
.feature-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

/* CATEGORIES GRID — sphères, 6 par ligne (Sacha 22/05), réduites -30% (22/05) */
#categories { overflow: hidden; }
#categories .cat-bg { position: absolute; inset: 0; z-index: 0; }
#categories .cat-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#categories .cat-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#categories .section-inner { position: relative; z-index: 2; }
.categories-grid {
    display: grid;
    grid-template-columns: auto auto auto; /* 6 fioles | vidéo | 6 fioles */
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}
.cat-side {
    display: grid;
    grid-template-columns: repeat(2, 104px); /* 2 colonnes × 3 fioles (-10%) */
    column-gap: 28px;
    row-gap: 44px; /* réduit : le label est désormais sous le hublot (Sacha 24/05) */
}
.cat-center {
    width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
}
.cat-center video { width: 100%; height: auto; display: block; }
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: 1fr; gap: 28px; }
    .cat-side { grid-template-columns: repeat(3, 1fr); max-width: 380px; margin: 0 auto; }
    .cat-center { width: 80%; max-width: 360px; margin: 0 auto; order: -1; }
}
@media (max-width: 540px) {
    .cat-side { grid-template-columns: repeat(3, 1fr); max-width: 300px; }
}
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category-card {
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 50%; /* sphère ronde (Sacha 22/05) */
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}
.category-card:hover { transform: scale(1.05); border-color: var(--color-gold); box-shadow: var(--shadow-gold); }
.category-card video { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
/* Hublot steampunk posé PAR-DESSUS chaque sphère-fiole (Sacha 24/05) */
.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hublot.png') center / 120% 120% no-repeat;
    pointer-events: none;
    z-index: 1;
}
.cat-name {
    margin-top: 12px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--color-gold-bright);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

/* VOICE SECTION */
/* SECRET / OTHERS section (Sacha 24/05) */
.secret-section {
    position: relative;
    overflow: hidden;
    padding: 100px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}
.secret-bg { position: absolute; inset: 0; z-index: 0; }
.secret-bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: blur(2px) saturate(1.2); }
.secret-bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%); }
.secret-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
}
.secret-text { flex: 0 1 560px; }
.secret-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 18px;
}
.secret-quote {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--color-gold-soft);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.secret-author {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.secret-woman {
    position: relative;
    flex: 0 0 36%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
}
.secret-woman video { display: block; width: 100%; height: auto; object-fit: cover; }
@media (max-width: 860px) {
    .secret-inner { flex-direction: column; gap: 0; }
    .secret-woman { flex: none; width: 78%; max-width: 340px; margin-top: 36px; }
}

#voice { background: linear-gradient(180deg, transparent, rgba(26, 255, 26, 0.04), transparent); overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
#voice .voice-inner { width: 100%; }
#voice .voice-bg { position: absolute; inset: 0; z-index: 0; }
#voice .voice-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#voice .voice-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#voice .voice-inner { position: relative; z-index: 2; }
.voice-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.voice-content { max-width: 540px; }
.voice-content .section-title { text-align: left; }
.voice-content .section-badge {
    background: rgba(26, 255, 26, 0.12);
    border-color: rgba(26, 255, 26, 0.3);
    color: var(--color-green-soft);
}
.voice-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 16px 0 28px;
    line-height: 1.7;
}
.voice-subtitle strong { color: var(--color-green-soft); }

.voice-commands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.cmd-pill {
    padding: 8px 16px;
    background: rgba(176, 141, 87, 0.08);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--color-text-muted);
    font-family: 'SF Mono', Monaco, monospace;
}

.voice-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.voice-button-large {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%; /* rond Sacha 22/05 */
    z-index: 2;
    filter: drop-shadow(0 0 32px rgba(26, 255, 26, 0.3));
}
.voice-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(26, 255, 26, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: voiceGlow 3s ease-in-out infinite;
}
@keyframes voiceGlow {
    0%, 100% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* GOLDENOR SECTION */
.goldor-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.goldor-step {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    max-width: 280px;
    text-align: center;
    transition: var(--transition);
}
.goldor-step:hover { border-color: var(--color-gold); box-shadow: var(--shadow-gold); }
/* Steps GoldenOr en porthole + overlay architect (Sacha 24/05) */
.step-num {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.step-num img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transform: scale(1.12);
}
.step-num::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0) 55%, rgba(255, 165, 0, 0.5) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.goldor-step:hover .step-num {
    box-shadow: 0 0 14px rgba(124, 179, 66, 0.7), 0 0 30px rgba(124, 179, 66, 0.4);
    transform: scale(1.06);
}
.goldor-step h3 {
    font-family: var(--font-display);
    color: var(--color-gold-soft);
    margin-bottom: 10px;
    font-size: 19px;
}
.goldor-step p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.goldor-arrow { font-size: 28px; color: var(--color-gold); font-weight: bold; }

.goldor-counter {
    text-align: center;
    background: var(--color-card);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-gold);
}
.counter-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
#goldenor { overflow: hidden; }
#goldenor .gold-bg { position: absolute; inset: 0; z-index: 0; }
#goldenor .gold-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#goldenor .gold-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#goldenor .section-inner { position: relative; z-index: 2; }
.counter-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    color: var(--color-gold);
    text-shadow: 0 0 24px rgba(255, 165, 0, 0.5);
}

/* PRICING SECTION */
#pricing { overflow: hidden; }
#pricing .pricing-bg { position: absolute; inset: 0; z-index: 0; }
#pricing .pricing-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#pricing .pricing-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#pricing .section-inner { position: relative; z-index: 2; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto 24px;
}
.pricing-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    text-align: center;
    position: relative;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--color-border-strong); }
.pricing-card-keeper {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(255, 165, 0, 0.05), var(--color-card));
}
.pricing-card-keeper:hover { box-shadow: var(--shadow-gold); }

.card-tier {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(176, 141, 87, 0.15);
    border-radius: var(--radius-pill);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--color-gold-soft);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.card-tier-special { background: var(--color-gold); color: var(--color-bg); }

.card-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-text);
    margin-bottom: 16px;
}
.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--color-gold);
}
.price-period { font-size: 16px; color: var(--color-text-muted); }
.card-subprice { font-size: 13px; color: var(--color-text-muted); margin-bottom: 24px; }
.card-subprice strong { color: var(--color-gold-soft); }
.card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}
.card-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    color: var(--color-text);
    border-bottom: 1px solid rgba(176, 141, 87, 0.1);
}
.card-features li::before {
    content: '\2713';
    position: absolute;
    left: 6px;
    color: var(--color-gold);
    font-weight: bold;
}
.btn-card {
    width: 100%;
    padding: 14px;
    background: rgba(176, 141, 87, 0.1);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-pill);
    color: var(--color-text);
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    display: block;
}
.pricing-card-keeper .btn-card {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}
.btn-card:hover { transform: translateY(-2px); }
.pricing-note { text-align: center; font-size: 12px; color: var(--color-text-dim); }

/* ECOSYSTEM SECTION */
#ecosystem { overflow: hidden; }
#ecosystem .eco-bg { position: absolute; inset: 0; z-index: 0; }
#ecosystem .eco-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#ecosystem .eco-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#ecosystem .section-inner { position: relative; z-index: 2; }
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 par ligne × 2 lignes (Sacha 22/05) */
    gap: 20px;
}
@media (max-width: 900px) {
    .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .ecosystem-grid { grid-template-columns: 1fr; }
}
.eco-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
}
/* Médaillons modules en porthole + overlay architect (Sacha 24/05) */
.eco-logo-wrap {
    position: relative;
    width: 109px;
    height: 109px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.eco-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transform: scale(1.053);
}
.eco-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0) 55%, rgba(255, 165, 0, 0.5) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.eco-card:hover .eco-logo-wrap {
    box-shadow: 0 0 14px rgba(124, 179, 66, 0.7), 0 0 30px rgba(124, 179, 66, 0.4);
    transform: scale(1.06);
}
.eco-body { flex: 1; min-width: 0; }
.eco-card:hover { transform: translateY(-4px); border-color: var(--color-border-strong); }
.eco-live { border-color: var(--color-green-soft); }
.eco-coming { border-color: var(--color-gold); background: linear-gradient(180deg, rgba(255, 165, 0, 0.08), var(--color-card)); }
.eco-status {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(176, 141, 87, 0.12);
    border-radius: var(--radius-pill);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--color-gold-soft);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.eco-live .eco-status { background: rgba(26, 255, 26, 0.15); color: var(--color-green-soft); }
.eco-coming .eco-status { background: var(--color-gold); color: var(--color-bg); }
.eco-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--color-text);
    margin-bottom: 8px;
}
.eco-name-temple { color: var(--color-gold); }
.eco-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }

/* GALLERY SECTION */
#gallery { overflow: hidden; }
#gallery .gallery-bg { position: absolute; inset: 0; z-index: 0; }
#gallery .gallery-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#gallery .gallery-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#gallery .section-inner { position: relative; z-index: 2; }
.gallery-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.gallery-item { flex: 0 0 300px; }
@media (max-width: 860px) {
    .gallery-grid { flex-wrap: wrap; justify-content: center; }
    .gallery-item { flex: 0 0 260px; }
}
.gallery-item {
    aspect-ratio: 9 / 19.5;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); border-color: var(--color-gold); box-shadow: var(--shadow-card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* DOWNLOAD SECTION */
#download {
    position: relative;
    overflow: hidden;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#download .download-bg { position: absolute; inset: 0; z-index: 0; }
#download .download-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#download .download-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#download .download-inner { position: relative; z-index: 2; }
.download-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.download-inner .section-title { margin-bottom: 16px; }
.download-inner .section-subtitle { margin-bottom: 36px; }

.newsletter-form {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
/* Boutons ovales transparents (Sacha 24/05) — PNG détouré, glow drop-shadow qui suit la forme */
.notify-btn {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    line-height: 0;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.notify-btn img {
    display: block;
    height: 62px;
    width: auto;
}
.notify-btn:hover {
    filter: drop-shadow(0 0 12px rgba(124, 179, 66, 0.8)) drop-shadow(0 0 26px rgba(124, 179, 66, 0.45));
    transform: scale(1.05);
}
.store-btn-img {
    display: block;
    line-height: 0;
    text-decoration: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}
.store-btn-img img {
    display: block;
    height: 120px;
    width: auto;
}
.store-btn-img:hover {
    filter: drop-shadow(0 0 12px rgba(124, 179, 66, 0.8)) drop-shadow(0 0 26px rgba(124, 179, 66, 0.45));
    transform: scale(1.05);
}
.newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: 14px 18px;
    background: rgba(176, 141, 87, 0.05);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-pill);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}
.newsletter-msg {
    min-height: 24px;
    font-size: 14px;
    margin-bottom: 28px;
    color: var(--color-green-soft);
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: rgba(176, 141, 87, 0.08);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
    min-width: 180px;
}
.store-btn:hover { background: rgba(176, 141, 87, 0.15); transform: translateY(-2px); }
.store-btn-disabled { opacity: 0.5; cursor: not-allowed; }
.store-btn-disabled:hover { transform: none; }
.store-text { text-align: left; }
.store-text small { display: block; font-size: 10px; color: var(--color-text-muted); letter-spacing: 1px; }
.store-text strong { display: block; font-size: 16px; }

/* FOOTER */
#footer {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid var(--color-border);
    padding: 60px 24px 24px;
    position: relative;
    z-index: 1;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-family: var(--font-display);
    color: var(--color-gold-soft);
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-col a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-gold); }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-logo img { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--color-border-strong); }
.footer-logo span { font-family: var(--font-display); font-size: 20px; color: var(--color-text); }
.footer-logo strong { color: var(--color-gold); }
.footer-tagline { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 16px; margin-top: 18px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; color: var(--color-text-muted); padding: 0; transition: color 0.2s, transform 0.2s; }
.footer-social a:hover { color: var(--color-gold); transform: translateY(-2px); }
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-dim);
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav-links { gap: 18px; }
    .voice-inner { grid-template-columns: 1fr; gap: 40px; }
    .voice-content .section-title { text-align: center; }
    .voice-button-large { width: 220px; height: 220px; }
    .voice-glow { width: 280px; height: 280px; }
    .hero-parallax { opacity: 0.2; right: -150px; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    /* (overrides tablette portrait déplacés tout en bas du fichier pour gagner sur les
       définitions base de #explain-plaque / #manifesto / #promo-video qui viennent
       plus tard dans le source — voir bloc final "TABLET PORTRAIT — section heights") */
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid var(--color-border);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    section { padding: 60px 20px; }
    .hero-stats { gap: 24px; }
    .stat-value { font-size: 26px; }
    .goldor-flow { flex-direction: column; }
    .goldor-arrow { transform: rotate(90deg); }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-parallax { display: none; }
}

/* Parallax target (3D rotation au survol) */
.parallax-target {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform-style: preserve-3d;
}

/* ============================================================
   SHOWCASE SECTIONS (phone parallax — Sacha 22/05)
   ============================================================ */
.showcase-section {
    position: relative;
    overflow: hidden;
}
.showcase-section .showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.showcase-section .showcase-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
.showcase-section .showcase-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
.showcase-section .showcase-inner { position: relative; z-index: 2; }
.showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(176, 141, 87, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.showcase-reverse .showcase-inner {
    direction: rtl;
}
.showcase-reverse .showcase-content,
.showcase-reverse .showcase-phone {
    direction: ltr;
}
.showcase-content .section-title { text-align: left; line-height: 1.2; }
.showcase-content .section-badge { background: rgba(255, 165, 0, 0.12); color: var(--color-gold); border-color: rgba(255, 165, 0, 0.3); }
.showcase-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin: 18px 0 28px;
}
.showcase-points {
    list-style: none;
    padding: 0;
}
.showcase-points li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--color-text);
    font-size: 14px;
    border-bottom: 1px solid rgba(176, 141, 87, 0.1);
}
.showcase-points li::before {
    content: '\2756';
    position: absolute;
    left: 4px;
    color: var(--color-gold);
    font-size: 14px;
}

/* PHONE FRAME — looks like a real iPhone */
.showcase-phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}
.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1410 0%, #2a1e14 50%, #1a1410 100%);
    border-radius: 38px;
    padding: 10px;
    box-shadow:
        0 0 0 2px var(--color-bronze-dark),
        0 0 0 4px rgba(0, 0, 0, 0.4),
        0 24px 64px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(176, 141, 87, 0.15),
        inset 0 0 0 1px rgba(255, 216, 106, 0.1);
    overflow: hidden;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform-style: preserve-3d;
}
.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}
.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #0a0908;
    border-radius: 0 0 12px 12px;
    z-index: 3;
}
.phone-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: phoneGlowFloat 6s ease-in-out infinite;
}
.phone-glow-gold {
    background: radial-gradient(circle, rgba(255, 165, 0, 0.18) 0%, transparent 65%);
}
.phone-glow-green {
    background: radial-gradient(circle, rgba(26, 255, 26, 0.15) 0%, transparent 65%);
}
@keyframes phoneGlowFloat {
    0%, 100% { transform: scale(0.95) translateY(0); opacity: 0.8; }
    50% { transform: scale(1.05) translateY(-10px); opacity: 1; }
}

@media (max-width: 1024px) {
    .showcase-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .showcase-reverse .showcase-inner { direction: ltr; }
    .showcase-content .section-title { text-align: center; }
    .showcase-points { display: inline-block; text-align: left; }
    .phone-frame { width: 240px; height: 500px; }
    .phone-glow { width: 360px; height: 360px; }
}

/* ============================================================
   FLOATING GOLD PARTICLES (bonus animation hero)
   ============================================================ */
.gold-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold);
    opacity: 0;
    pointer-events: none;
    animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    20% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-200px) translateX(var(--drift, 30px)); }
}

/* ============================================================
   EXPLAIN PLAQUE — Why Temple / How it works (Sacha 22/05)
   Plaquette steampunk avec 4 coins ornés, 2 colonnes
   ============================================================ */
#explain-plaque {
    padding: 100px 24px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plaque-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.plaque-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
.plaque-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
.plaque-frame {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(20, 14, 8, 0.85), rgba(12, 9, 5, 0.92)),
        radial-gradient(circle at 50% 0%, rgba(255, 165, 0, 0.06), transparent 60%);
    border: 1px solid rgba(176, 141, 87, 0.42);
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        inset 0 0 36px rgba(176, 141, 87, 0.08),
        0 0 28px rgba(255, 165, 0, 0.08);
}
.plaque-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-gold-soft);
    opacity: 0.85;
}
.plaque-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; border-top-left-radius: 18px; }
.plaque-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; border-top-right-radius: 18px; }
.plaque-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; border-bottom-left-radius: 18px; }
.plaque-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; border-bottom-right-radius: 18px; }

.plaque-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 36px;
    align-items: stretch;
}
.plaque-col { display: flex; flex-direction: column; }
.plaque-divider {
    background: linear-gradient(180deg, transparent, rgba(176, 141, 87, 0.4) 20%, rgba(176, 141, 87, 0.4) 80%, transparent);
    width: 1px;
    height: 100%;
    min-height: 240px;
}
.plaque-title {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
    text-shadow: 0 0 14px rgba(255, 165, 0, 0.22);
}
.plaque-body {
    font-family: var(--font-body);
    color: var(--color-text);
    font-size: 15.5px;
    line-height: 1.8;
    opacity: 0.94;
}
.plaque-body strong {
    color: var(--color-gold);
    font-weight: 600;
}
.plaque-body a {
    color: var(--color-gold);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 165, 0, 0.4);
    transition: color 0.3s, border-color 0.3s;
}
.plaque-body a:hover {
    color: var(--color-gold-soft);
    border-bottom-color: var(--color-gold-soft);
}
.plaque-seal {
    position: relative;
    width: 112px;
    height: 112px;
    margin: auto auto 4px;
    border-radius: 50%;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.plaque-seal:hover {
    box-shadow: 0 0 18px rgba(124, 179, 66, 0.6), 0 0 42px rgba(124, 179, 66, 0.3);
}
.plaque-seal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    transform: scale(1.2); /* resserre le cercle autour du médaillon (crop marge noire) */
}
.plaque-seal::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0) 50%, rgba(255, 165, 0, 0.5) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}
/* Sceau signature centré sous l'auteur (manifesto + secret) */
.author-seal { margin: 80px auto 0; }
/* Sceau sous le paragraphe Languages — centré dans la colonne et descendu (Sacha 24/05) */
.lang-seal { margin: 64px auto 0; }
/* FR/EN switch driven by html[lang] */
html[lang="en"] .plq-fr { display: none; }
html[lang="fr"] .plq-en { display: none; }
@media (max-width: 800px) {
    #explain-plaque { padding: 40px 16px; min-height: auto; }
    #hero { min-height: auto; padding: 90px 24px 40px; }
    .plaque-frame { padding: 32px 24px; }
    .plaque-grid { grid-template-columns: 1fr; gap: 28px; }
    .plaque-divider {
        width: 60%;
        height: 1px;
        min-height: 1px;
        margin: 0 auto;
        background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.4), transparent);
    }
    .plaque-body { font-size: 14.5px; line-height: 1.72; }
}

/* ============================================================
   PROMO X VIDEO (cut social, audio activable via nav mute btn)
   ============================================================ */
#promo-video {
    padding: 100px 24px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.conclusion-bg { position: absolute; inset: 0; z-index: 0; }
.conclusion-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
.conclusion-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
.promo-video-frame {
    position: relative;
    width: 100%;
    max-width: 504px;
    margin: 0 auto 36px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(176, 141, 87, 0.28);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 165, 0, 0.10);
    z-index: 2;
}
.conclusion-text { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.conclusion-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.4vw, 38px);
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 20px;
}
.conclusion-quote {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.7vw, 18px);
    color: var(--color-gold-soft);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}
.conclusion-author {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
@media (max-width: 860px) {
    .promo-video-frame { position: relative; top: 0; left: 0; width: 70%; max-width: 420px; margin: 0 auto 32px; }
    #promo-video { flex-direction: column; }
}
.promo-video-frame video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}
@media (max-width: 700px) {
    #promo-video { padding: 36px 16px 18px; }
    .promo-video-frame { border-radius: 16px; }
}

/* ============================================================
   GLOBAL PARTICLES (palette Temple — bronze/gold/vert, 1-2.5px)
   Plus petites que Playlist (qui utilise 2-5px)
   ============================================================ */
.global-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle-temple {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    animation: temple-particle-float linear infinite;
}
@keyframes temple-particle-float {
    0%   { opacity: 0; transform: translate3d(0, 0, 0) scale(0.8); }
    8%   { opacity: 0.75; }
    50%  { opacity: 0.5; }
    100% { opacity: 0; transform: translate3d(var(--drift, 40px), -110vh, 0) scale(1); }
}

/* Typewriter — hidden au load pour éviter flash de texte (Playlist pattern) */
.typewriter { visibility: hidden; }
.typewriter.done::after {
    content: '';
}

/* Hero stat counters animate up on view */
.stat-value[data-target] { transition: opacity 0.4s ease; }

/* ============================================================
   ACCESSIBILITY SECTION (Sacha 22/05 — cheval de bataille)
   ============================================================ */
#accessibility {
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(26, 255, 26, 0.025), transparent);
    overflow: hidden;
}
#accessibility .access-bg { position: absolute; inset: 0; z-index: 0; }
#accessibility .access-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
#accessibility .access-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#accessibility .section-inner { position: relative; z-index: 2; }
.access-badge {
    background: rgba(26, 255, 26, 0.12) !important;
    border-color: rgba(26, 255, 26, 0.35) !important;
    color: var(--color-green-soft) !important;
}
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.access-pillar {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.access-pillar:hover {
    border-color: rgba(26, 255, 26, 0.4);
    box-shadow: 0 4px 24px rgba(26, 255, 26, 0.12);
    transform: translateY(-4px);
}
.access-icon {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.access-medal {
    position: relative;
    z-index: 1;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 0 22px rgba(255, 165, 0, 0.32),
        inset 0 0 18px rgba(0, 0, 0, 0.55);
    transition: box-shadow 0.4s ease;
}
.access-medal img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transform: scale(var(--medal-zoom, 1.2)); /* resserre pile le médaillon dans le cercle */
    transition: transform 0.4s ease, filter 0.4s ease;
}
.access-icon::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 255, 26, 0.35) 0%, rgba(26, 255, 26, 0.12) 40%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    transform: scale(0.85);
    z-index: 0;
}
.access-pillar:hover .access-medal img {
    transform: scale(calc(var(--medal-zoom, 1.2) * 1.07));
}
.access-pillar:hover .access-medal {
    box-shadow:
        0 0 28px rgba(26, 255, 26, 0.55),
        inset 0 0 18px rgba(0, 0, 0, 0.45);
}
.access-pillar:hover .access-icon::after {
    opacity: 1;
    transform: scale(1.05);
}
.access-pillar h3 {
    font-family: var(--font-display);
    color: var(--color-green-soft);
    font-size: 20px;
    margin-bottom: 12px;
}
.access-pillar p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.access-manifesto {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: clamp(16px, 1.7vw, 20px);
    color: var(--color-gold-soft);
    line-height: 1.6;
    font-style: italic;
    padding: 24px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
@media (max-width: 900px) {
    .access-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   MANIFESTO SECTION (poetic quote — Sacha 22/05 carte blanche)
   ============================================================ */
#manifesto {
    padding: 100px 24px 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
}
.manifesto-woman {
    position: relative;
    flex: 0 0 36%;
    max-width: 440px;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
    background: var(--color-bg-2);
}
.manifesto-woman video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: contrast(1.18) saturate(1.06);
}
@media (max-width: 860px) {
    #manifesto { flex-direction: column; gap: 0; }
    .manifesto-woman { flex: none; width: 78%; max-width: 340px; margin-top: 36px; }
}
.manifesto-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.manifesto-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.2);
}
.manifesto-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg) 80%);
}
#manifesto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 165, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.manifesto-inner {
    flex: 0 1 auto;
    width: fit-content;
    max-width: 540px;
    margin: 0;
    position: relative;
    z-index: 2;
}
.manifesto-quote {
    position: relative;
    padding: 34px 6px 12px;
}
.quote-mark {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--color-gold);
    opacity: 0.4;
    line-height: 1;
    position: absolute;
}
.quote-mark:first-child { top: 2px; left: -22px; }
.quote-mark.right { bottom: 2px; right: -22px; transform: none; }
.quote-text {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 18px;
}
.quote-text-2 {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--color-gold-soft);
    line-height: 1.7;
    font-style: italic;
}
.manifesto-author {
    margin-top: 6px;
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .quote-mark { font-size: 56px; }
}

/* ============================================================
   HERO TITLE VIDEO (pingpong, Sacha 22/05)
   ============================================================ */
.hero-title-video-wrap {
    position: relative;
    max-width: 734px; /* OptiAct 09/06 — −20% puis −15% (Sacha) ; était 1080px */
    margin: 0 auto 28px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4.3 / 1; /* cadre rectangulaire long → crop le watermark bas (Sacha 22/05) */
    border: 1.5px solid rgba(255, 165, 0, 0.35);
    box-shadow: 0 0 32px rgba(255, 165, 0, 0.18), inset 0 0 24px rgba(255, 165, 0, 0.08);
    background: var(--color-bg);
}
.hero-title-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1); /* OptiAct 09/06 — vidéo remplit pile le cadre 4.3/1 via object-fit:cover (Sacha : "soit video fit cadre, soit cadre fit video") */
    border-radius: 16px;
}

/* Veo-mask désactivé sur hero-title (cadre crop déjà le watermark) */
.hero-title-video-wrap .veo-mask { display: none; }

/* VEO MASK — bande noire avec dégradé pour cacher le watermark bas-droite */
.veo-mask {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 38%;
    height: 24%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(10, 9, 8, 0.55) 35%,
        rgba(10, 9, 8, 0.98) 65%,
        var(--color-bg) 100%
    );
    pointer-events: none;
    z-index: 3;
}

/* ============================================================
   MEDIA BREAK — vidéos pingpong intermédiaires entre sections
   ============================================================ */
.media-break {
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}
.media-break-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.15), 0 8px 32px rgba(0, 0, 0, 0.5);
    background: var(--color-bg-2);
}
/* Variantes taille (Sacha 22/05, ajusté +400%) */
.media-break.size-medium .media-break-inner {
    max-width: 540px;
    margin-left: auto;        /* décalage à droite (Sacha 22/05) */
    margin-right: 8%;         /* laisse l'espace à gauche pour futur contenu */
}
.media-break.size-small .media-break-inner { max-width: 1000px; } /* landing2-5, +400% vs 200 */
.media-break.size-half .media-break-inner { max-width: 500px; } /* landing4 -50% (Sacha 22/05) */
.media-break.align-left .media-break-inner {
    margin-left: 8%;        /* décalage à gauche (Sacha 22/05) */
    margin-right: auto;     /* laisse l'espace à droite pour titre + texte + logo */
}
.media-break.align-right .media-break-inner {
    margin-left: auto;      /* décalage à droite (Sacha 22/05) */
    margin-right: 8%;       /* laisse l'espace à gauche pour titre + texte + logo */
}
.media-break-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(255, 165, 0, 0.08);
    pointer-events: none;
    z-index: 2;
    border-radius: var(--radius-lg);
}
.media-break-inner video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================================
   SECTION TITLE IMAGES (Modules / Vocal System steampunk titles)
   ============================================================ */
.section-title-img {
    display: block;
    max-width: 360px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.25));
}
.section-title-img-large {
    max-width: 520px;
    border-radius: 48px;
    transition: box-shadow 0.35s ease;
}
/* Halo or qui apparaît au survol — même effet que le halo vert des médaillons, mais en or (Sacha 24/05) */
.section-title-img-large:hover {
    box-shadow: 0 0 26px rgba(255, 165, 0, 0.6), 0 0 70px rgba(255, 165, 0, 0.32);
}
.voice-content .section-title-img {
    margin: 0 auto 18px; /* centré (Sacha 22/05) */
    max-width: 640px;     /* +100% (Sacha 22/05) */
    display: block;
}

@media (max-width: 768px) {
    .section-title-img { max-width: 280px; }
    .section-title-img-large { max-width: 320px; }
    .media-break { padding: 24px 16px; }
}

/* ============================================================
   BTN-TEMPLE — Steampunk CTA (CSS, Grok Build demo)
   ============================================================ */
.btn-temple {
    --btn-temple-glow: rgba(255, 165, 0, 0.55);
    --btn-temple-ring: rgba(176, 141, 87, 0.75);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 30px;
    border: 2px solid var(--btn-temple-ring);
    border-radius: var(--radius-pill);
    background:
        linear-gradient(180deg, rgba(255, 216, 106, 0.18) 0%, rgba(176, 141, 87, 0.06) 48%, rgba(10, 9, 8, 0.4) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(255, 165, 0, 0.22) 0%, transparent 70%);
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.6px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.28s ease,
                border-color 0.28s ease,
                filter 0.28s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 216, 106, 0.35),
        inset 0 -2px 8px rgba(0, 0, 0, 0.45),
        0 4px 18px rgba(0, 0, 0, 0.35);
}
.btn-temple::before,
.btn-temple::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--color-gold-bright), var(--color-bronze-dark));
    border: 1px solid rgba(255, 216, 106, 0.5);
    transform: translateY(-50%);
    box-shadow: 0 0 6px rgba(255, 165, 0, 0.35);
    pointer-events: none;
}
.btn-temple::before { left: 10px; }
.btn-temple::after { right: 10px; }
.btn-temple .btn-temple-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.14) 50%, transparent 62%);
    transform: translateX(-130%);
    transition: transform 0.55s ease;
    pointer-events: none;
}
.btn-temple .btn-temple-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.92;
    filter: drop-shadow(0 0 4px rgba(255, 165, 0, 0.45));
}
.btn-temple .btn-temple-label {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}
.btn-temple:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: var(--color-gold);
    box-shadow:
        inset 0 1px 0 rgba(255, 216, 106, 0.45),
        0 0 18px var(--btn-temple-glow),
        0 0 36px rgba(255, 165, 0, 0.22),
        0 8px 24px rgba(0, 0, 0, 0.4);
}
.btn-temple:hover .btn-temple-shine { transform: translateX(130%); }
.btn-temple:active {
    transform: translateY(0) scale(0.98);
    filter: brightness(0.95);
}
.btn-temple:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.btn-temple--gold {
    --btn-temple-glow: rgba(255, 165, 0, 0.65);
    background:
        linear-gradient(135deg, #c98a1a 0%, #ffd86a 42%, #ffa500 100%);
    color: #1a1208;
    border-color: #ffe08a;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -3px 10px rgba(120, 70, 0, 0.35),
        0 6px 22px rgba(255, 165, 0, 0.28);
}
.btn-temple--gold::before,
.btn-temple--gold::after {
    background: radial-gradient(circle at 35% 35%, #fff2b8, #8a5a12);
    border-color: rgba(255, 240, 180, 0.7);
}
.btn-temple--gold:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 0 22px rgba(255, 165, 0, 0.75),
        0 0 44px rgba(255, 165, 0, 0.35),
        0 10px 28px rgba(0, 0, 0, 0.35);
}

.btn-temple--voice {
    --btn-temple-glow: rgba(26, 255, 26, 0.55);
    --btn-temple-ring: rgba(26, 255, 26, 0.45);
    background:
        linear-gradient(180deg, rgba(26, 255, 26, 0.14) 0%, rgba(10, 9, 8, 0.55) 100%),
        radial-gradient(ellipse at 50% 0%, rgba(26, 255, 26, 0.18) 0%, transparent 70%);
    color: var(--color-green-soft);
    box-shadow:
        inset 0 1px 0 rgba(184, 255, 138, 0.2),
        0 4px 18px rgba(0, 0, 0, 0.35);
}
.btn-temple--voice::before,
.btn-temple--voice::after {
    background: radial-gradient(circle at 35% 35%, #b8ff8a, #1a6b1a);
    border-color: rgba(184, 255, 138, 0.55);
    box-shadow: 0 0 8px rgba(26, 255, 26, 0.45);
}
.btn-temple--voice:hover {
    border-color: var(--color-green);
    box-shadow:
        inset 0 1px 0 rgba(184, 255, 138, 0.3),
        0 0 18px rgba(26, 255, 26, 0.55),
        0 0 36px rgba(26, 255, 26, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-temple--bronze {
    --btn-temple-glow: rgba(176, 141, 87, 0.5);
    background: rgba(176, 141, 87, 0.08);
    color: var(--color-gold-soft);
}
.btn-temple--bronze:hover {
    background: rgba(176, 141, 87, 0.16);
}

.btn-temple-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


/* ============================================================
   TABLET — section heights override (Sacha 08/06)
   Placé en FIN de fichier pour gagner sur les définitions base
   de #explain-plaque (l1593) / #promo-video (l1752) / #manifesto (l1992).
   Cible élargie à 1366px pour couvrir : Galaxy Tab A9 paysage (1340),
   iPad standard (1080), iPad Pro 11 (1194), iPad Pro 12.9 portrait (1024).
   ============================================================ */
@media (max-width: 1366px) {
    /* section générique : padding 100→44 (était 60, trop large en tablette) */
    section { padding: 44px 24px; }
    /* casser les min-height:100vh / 82vh + ajuster padding par section */
    #hero { min-height: auto; padding: 90px 24px 32px; }
    #explain-plaque { min-height: auto; padding: 44px 24px; }
    #manifesto { min-height: auto; padding: 44px 24px 28px; }
    #promo-video { min-height: auto; padding: 44px 24px 32px; }
    #voice { min-height: auto; padding: 44px 24px; }
    #download { min-height: auto; padding: 44px 24px; }
    .secret-section { min-height: auto; padding: 44px 24px; }
    /* Header titre/badge : moins d'air en tablette (64→28) */
    .section-header { margin-bottom: 28px; }
    /* Sceau : réduire margin-top (le contenu au-dessus est plus serré) */
    .author-seal { margin-top: 24px; }
}

/* ============================================================
   BATCH H — SMOOTH SCROLL POLISH (Sacha 09/06)
   Soap-bubble feel : easing scroll, anchor jumps clean, no horizontal
   bounce, scrollbar discrete bronze. Zero visible risk, pure polish.
   ============================================================ */

/* Anchor jumps : padding plus large pour mobile (nav 64px) et tablette (72px) */
@media (max-width: 1366px) {
    html { scroll-padding-top: 72px; }
}
@media (max-width: 768px) {
    html { scroll-padding-top: 64px; }
}

/* Kill horizontal bounce / accidental swipe-back on iOS Safari + Chrome Android */
html, body {
    overscroll-behavior-x: none;
}

/* iOS Safari : momentum scroll fluide (no-op sur iOS récent mais zero risk) */
body {
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar discrète bronze (desktop seulement, touch devices = no scrollbar visible) */
@media (hover: hover) and (pointer: fine) {
    /* Firefox */
    html {
        scrollbar-width: thin;
        scrollbar-color: rgba(176, 141, 87, 0.35) transparent;
    }
    /* WebKit (Chrome, Safari, Edge) */
    ::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(176, 141, 87, 0.35);
        border-radius: 5px;
        border: 2px solid transparent;
        background-clip: padding-box;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(201, 168, 118, 0.55);
        background-clip: padding-box;
        border: 2px solid transparent;
    }
}

/* CTA buttons & anchor links : transition cubic-bezier feel */
a[href^="#"], .cta-button, .nav-cta {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   FIX VIDES INTER-SECTIONS (Sacha 09/06, forensic workflow root cause)

   Cause root #1 : .secret-text { flex: 0 1 560px } (L756) devient une
     HAUTEUR forcée de 560px quand .secret-inner passe en column (@860px).
     Contenu réel ~340px → ~220px de vide PUR sous le sceau, PILE à la
     jonction #privacy → #gallery sur iPad portrait. Reset en mode column.

   Cause root #2 : .section-title-img-large reste à 520px (~290px de haut)
     entre 769px et 1366px (seul le bp 768 baisse à 320). Cap intermédiaire
     pour iPad portrait/paysage afin de couper ~140px en haut de #ecosystem.
   ============================================================ */
@media (max-width: 860px) {
    /* Tue le flex-basis 560px qui devient hauteur forcée en column. */
    .secret-text { flex: 0 0 auto; width: 100%; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 1366px) {
    /* Image titre Modules : cap intermédiaire entre desktop (520) et mobile (320). */
    .section-title-img-large { max-width: 380px; }
    .section-title-img { margin: 0 auto 12px; }
}

/* ============================================================
   FIX MOBILE ONLY — 3 badges hero chevauchent (Sacha 09/06 06h, forensic workflow)

   Cause root : .badge-logo-wrap a margin: -16px 0 (médaillon orbe 68×68 déborde
     de 16px haut/bas hors de la pillule fine de ~36px). Sur mobile <600px, les
     3 labels ("Coming June" + "Visit arritos.com" + "Arritos Playlist") ne
     tiennent pas en 1 ligne → flex-wrap actif. Le gap:14px du container sert
     aussi de row-gap → 14px < 32px de débord cumulé entre 2 lignes → chevauchement
     net de 18px. Tablette/desktop OK car 3 badges restent sur 1 ligne (row-gap
     jamais utilisé).

   Fix : row-gap 36px (absorbe 32px débord + 4px d'air) + margin-bottom 36px
     (évite que le bas du dernier orbe touche le hero-title).
   Placé en DERNIER pour gagner la cascade contre @media 1366px ci-dessus.
   ============================================================ */
@media (max-width: 600px) {
    .hero-top-badges { row-gap: 36px; margin-bottom: 36px; }
    /* Largeur fixe identique → orbes alignés verticalement sur la même colonne gauche. */
    .hero-badge { width: 200px; }
}

/* Descendre le cadre titre de 20px sur mobile + tablette (Sacha 09/06 07h02) */
@media (max-width: 1366px) {
    .hero-title-video-wrap { margin-top: 20px; }
}
