/* ═══════════════════════════════════════════════════
   LANDING PAGE — Styles
   Réutilise les CSS variables de styles.css
   ═══════════════════════════════════════════════════ */

/* ═══ PRELOADER ═══ */
body.preloader-active {
    overflow: hidden;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: radial-gradient(ellipse at 50% 40%, #2a1810 0%, #1a1008 50%, #0d0804 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#preloaderParticles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Glow ambré pulsant derrière les yeux */
.preloader-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -60%);
    background: radial-gradient(circle, rgba(78,220,240,0.2) 0%, rgba(78,220,240,0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: preloader-glow-pulse 2s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes preloader-glow-pulse {
    0%, 100% { transform: translate(-50%, -60%) scale(1); opacity: 0.6; }
    50%      { transform: translate(-50%, -60%) scale(1.15); opacity: 1; }
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Avatar mascotte ── */
.preloader-avatar {
    width: 200px;
    height: 200px;
    margin-bottom: 40px;
    opacity: 0;
    animation: preloader-avatar-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
    filter: drop-shadow(0 0 40px rgba(78, 220, 240, 0.3)) drop-shadow(0 0 80px rgba(249, 115, 22, 0.2));
}

.preloader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: preloader-avatar-breathe 3s ease-in-out 1.2s infinite;
}

@keyframes preloader-avatar-in {
    0%   { opacity: 0; transform: scale(0.3) translateY(30px); filter: brightness(0); }
    50%  { opacity: 1; transform: scale(1.08) translateY(-5px); filter: brightness(1.2); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: brightness(1); }
}

@keyframes preloader-avatar-breathe {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* ── Titre imposant ── */
.preloader-brand {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: preloader-brand-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(249,115,22,0.4);
}

@keyframes preloader-brand-in {
    from { opacity: 0; transform: translateY(20px) scale(0.9); letter-spacing: 0.1em; }
    to   { opacity: 1; transform: translateY(0) scale(1); letter-spacing: -0.03em; }
}

/* ── Sous-titre ── */
.preloader-subtitle {
    font-family: var(--font-family);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    animation: preloader-fade-in 0.6s ease 0.8s both;
    margin-bottom: 32px;
}

@keyframes preloader-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Barre de chargement ── */
.preloader-bar-track {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
    opacity: 0;
    animation: preloader-fade-in 0.4s ease 0.9s both;
}

.preloader-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #f97316, #fdba74, #f97316);
    background-size: 200% 100%;
    border-radius: 100px;
    animation:
        preloader-bar-grow 1.3s cubic-bezier(0.4, 0, 0.2, 1) 1s both,
        preloader-bar-shimmer 1s linear 1s infinite;
    box-shadow: 0 0 12px rgba(249,115,22,0.5);
}

@keyframes preloader-bar-grow {
    0%   { width: 0; }
    100% { width: 100%; }
}

@keyframes preloader-bar-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Sortie explosive ── */
#preloader.preloader-exit {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#preloader.preloader-exit .preloader-glow {
    transform: translate(-50%, -60%) scale(3);
    opacity: 0;
    transition: all 0.7s ease;
}

#preloader.preloader-exit .preloader-avatar {
    transform: scale(1.3) translateY(-15px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.preloader-exit .preloader-brand {
    transform: translateY(-10px) scale(1.1);
    opacity: 0;
    transition: all 0.4s ease 0.05s;
}

/* Pause hero animations while preloader is active */
body.preloader-active .hero-eyebrow,
body.preloader-active .hero h1,
body.preloader-active .hero-subtitle,
body.preloader-active .hero-cta,
body.preloader-active .hero-right {
    animation-play-state: paused;
}

/* ═══ NAVBAR ═══ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-8);
    transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.landing-nav.scrolled {
    background: rgba(26, 16, 8, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: #fff;
}

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

.nav-brand span {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color var(--transition-base);
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-login:hover {
    color: #fff;
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
}

.btn-nav-waitlist {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-5);
    background: #f97316;
    color: #fff;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-nav-waitlist:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1a1008 0%, #2a1810 50%, #1a1008 100%);
    overflow: hidden;
}

/* Amber glow overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249,115,22,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dot grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .hero {
    background: linear-gradient(160deg, #1a1008 0%, #2a1810 50%, #1a1008 100%);
}


.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 120px 40px 100px;
    margin: 0 auto;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-mascot-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

@keyframes hero-mascot-enter {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mascotte hero */
.hero-mascot {
    width: 380px;
    height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(249,115,22,0.2));
    animation: junior-breathe 3s ease-in-out infinite;
}

/* Eyebrow pill */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-6);
    animation: hero-clip-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-eyebrow svg {
    width: 16px;
    height: 16px;
    color: #f97316;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-wrap: balance;
    margin-bottom: var(--space-5);
    animation: hero-clip-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(90deg, #fdba74, #f97316, #fdba74, #f97316);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s linear infinite;
    font-style: italic;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    animation: hero-clip-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

@keyframes hero-clip-reveal {
    from { opacity: 0; clip-path: inset(0 100% 0 0); }
    to { opacity: 1; clip-path: inset(0 0% 0 0); }
}

.hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-4);
    animation: hero-clip-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.hero-cta .btn-cta-primary {
    background: #f5d5b8;
    color: #1a0f08;
    box-shadow: 0 4px 24px rgba(245,213,184,0.3);
}

.hero-cta .btn-cta-primary:hover {
    background: #fce8d5;
    box-shadow: 0 8px 32px rgba(245,213,184,0.4);
}

.hero-cta .btn-cta-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
}

.hero-cta .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.hero-cta .btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

/* Tagline manifeste dans le hero */
.hero-manifesto {
    font-size: var(--text-base);
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    margin-top: var(--space-5);
    animation: hero-clip-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.0s both;
}

/* Social proof sous le hero CTA */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    animation: hero-clip-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

.social-proof-avatars {
    display: flex;
    gap: 6px;
}

.proof-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.8;
}

.proof-dot:nth-child(2) { background: var(--accent-secondary); }
.proof-dot:nth-child(3) { background: #f5d5b8; }

.social-proof-text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
}

.social-proof-text strong {
    color: rgba(255,255,255,0.85);
}

/* CTA intermédiaire entre sections */
.cta-intermediate {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-default);
}

.cta-intermediate p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.cta-intermediate-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.cta-intermediate-link:hover {
    gap: var(--space-3);
    text-decoration: underline;
}


.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: var(--text-lg);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 24px rgba(249,115,22,0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249,115,22,0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: var(--text-lg);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-1px);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.4);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ═══ SECTIONS ═══ */
.landing-section {
    padding: 100px var(--space-8);
    position: relative;
    overflow: hidden;
}

/* ── Section textures ── */

/* Quadrillage — Qui est Junior (#decouvrir) */
#decouvrir::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249,115,22,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Spotlight ambré — Ce que Junior sait faire (#tests) */
#tests::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(249,115,22,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


/* Quadrillage léger + wash ambré — Pourquoi vous en avez besoin */
#avantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249,115,22,0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249,115,22,0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

#avantages::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 50% 40%, rgba(249,115,22,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dot grid + glow bleu — Conçu pour les pros (#securite) */
.section-dark#securite::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.section-dark#securite::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,162,244,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dot grid — CTA Waitlist */
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.section-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

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

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

/* ═══ QUI EST JUNIOR ═══ */
.about-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-16);
    align-items: center;
    margin-top: var(--space-12);
}

.about-avatar {
    text-align: center;
}

.about-avatar img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-text h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.about-text p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.manifesto-quote {
    font-size: var(--text-xl);
    font-style: italic;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    border-left: 3px solid var(--accent-primary);
    background: rgba(245, 158, 66, 0.06);
    padding: var(--space-5) var(--space-6);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-6) 0;
}

.manifesto-quote strong {
    font-weight: 700;
    color: var(--accent-primary);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-10);
}

.value-card {
    padding: var(--space-6);
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.value-card .value-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-2);
}

.value-card .value-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
}


/* ═══ 3D CAROUSEL ═══ */
.carousel-wrapper {
    margin-top: var(--space-10);
}

.carousel-viewport {
    position: relative;
    height: 380px;
    perspective: 1200px;
    overflow: hidden;
    outline: none;
}

.carousel-track {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Card */
.carousel-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260px;
    margin-left: -130px;
    margin-top: -170px;
    height: 340px;
    will-change: transform, opacity;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

.carousel-card.is-active {
    cursor: pointer;
}

.carousel-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-6) var(--space-5);
    background: var(--bg-primary);
    border: 1px solid var(--border-default);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.carousel-card.is-active .carousel-card-inner {
    border-color: var(--accent-primary);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(249,115,22,0.3);
}

.carousel-card.is-active:hover .carousel-card-inner {
    transform: scale(1.03);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(249,115,22,0.4);
}

/* Icon */
.carousel-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent-primary-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    color: var(--accent-primary);
}

.carousel-card-icon svg {
    width: 28px;
    height: 28px;
}

/* Title */
.carousel-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

/* Count pill */
.carousel-card-count {
    display: inline-block;
    padding: 3px 12px;
    background: var(--accent-primary-light);
    color: var(--accent-primary);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
}

/* Hint */
.carousel-card-hint {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 200px;
}

/* Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-default);
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel-arrow:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 4px 16px rgba(249,115,22,0.2);
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-default);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--accent-primary);
}

/* ═══ CAROUSEL → GRID (desktop) ═══ */
@media (min-width: 1025px) {
    .carousel-viewport {
        height: auto;
        perspective: none;
        overflow: visible;
    }
    .carousel-track {
        position: static;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-5);
        transform-style: flat;
    }
    .carousel-card {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        cursor: pointer;
    }
    .carousel-card-inner {
        height: 100%;
        min-height: 260px;
    }
    .carousel-card:hover .carousel-card-inner {
        border-color: var(--accent-primary);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(249,115,22,0.3);
        transform: translateY(-4px);
    }
    .carousel-controls {
        display: none;
    }
    .carousel-card-hint {
        display: block;
    }
}

/* ═══ SKILL OVERLAY ═══ */
.skill-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-overlay.active {
    pointer-events: auto;
    opacity: 1;
}

.skill-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.skill-overlay-content {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    opacity: 0;
}

.skill-overlay.active .skill-overlay-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.skill-overlay-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.skill-overlay-close:hover {
    background: var(--accent-primary-light);
    color: var(--text-primary);
}

.skill-overlay-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.skill-overlay-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: var(--accent-primary);
}

.skill-overlay-icon svg {
    width: 22px;
    height: 22px;
}

.skill-overlay-header h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.skill-overlay-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.skill-overlay-tests {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-overlay-tests li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-default);
    font-size: var(--text-sm);
    color: var(--text-primary);
}

.skill-overlay-tests li:last-child {
    border-bottom: none;
}

.skill-overlay-tests li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══ COMMENT CA MARCHE ═══ */
.steps-layout {
    display: flex;
    align-items: flex-start;
    gap: var(--space-8);
    margin-top: var(--space-12);
    position: relative;
}

.steps-layout::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: var(--border-default);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 2px solid var(--border-default);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.step:hover .step-icon {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-primary-light);
}

.step-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.step h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.step p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══ CONFIANCE (dark section) ═══ */
.section-dark {
    position: relative;
    overflow: hidden;
    background: #1a1008;
    color: #fafaf9;
}

.section-dark .section-title {
    color: #fafaf9;
}

.section-dark .section-subtitle {
    color: #a8a29e;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.trust-item {
    display: flex;
    gap: var(--space-5);
    align-items: flex-start;
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251,146,60,0.12);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
}

.trust-icon svg {
    width: 22px;
    height: 22px;
}

.trust-item h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: #fafaf9;
    margin-bottom: var(--space-1);
}

.trust-item p {
    font-size: var(--text-sm);
    color: #a8a29e;
    line-height: 1.6;
}

/* ═══ BADGE BETA ═══ */
.badge-beta {
    display: inline-block;
    padding: 1px 6px;
    background: linear-gradient(135deg, #f97316, #fdba74);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius-full);
    margin-left: var(--space-1);
    vertical-align: middle;
    line-height: 1.4;
}

/* ═══ VALUE DETAIL ═══ */
.value-detail {
    font-size: var(--text-xs);
    font-style: italic;
    color: var(--text-secondary);
    margin-top: var(--space-1);
}

/* ═══ BENEFITS (Pourquoi) ═══ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.benefit-card {
    padding: var(--space-6);
    background: var(--bg-primary);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-icon {
    margin-bottom: var(--space-3);
    color: var(--accent-primary);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h4 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.benefit-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══ COMPARISON GRID (Avant/Après) ═══ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-10);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-col {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-default);
    overflow: hidden;
}

.comparison-header {
    padding: var(--space-4) var(--space-5);
    font-weight: 700;
    font-size: var(--text-base);
    text-align: center;
}

.comparison-before .comparison-header {
    background: var(--accent-error-light);
    color: var(--accent-error);
}

.comparison-after .comparison-header {
    background: var(--accent-success-light);
    color: var(--accent-success);
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) var(--space-5);
    border-top: 1px solid var(--border-default);
}

.comparison-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.comparison-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
}

.comparison-highlight {
    color: var(--accent-success);
}

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

/* ═══ TRUST ITEM FULL WIDTH (5e élément impair) ═══ */
.trust-item-full {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-10);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.04);
}

.trust-badge svg {
    color: var(--accent-primary);
}

/* ═══ CTA FINAL ═══ */
.section-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #2a1810, #f97316, #fdba74);
    text-align: center;
    padding: 80px var(--space-8);
}

.section-cta > * {
    position: relative;
    z-index: 1;
}

.section-cta .cta-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
}

.section-cta .cta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: junior-breathe 3s ease-in-out infinite;
}

.section-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-4);
}

.waitlist-subtitle {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
}

.waitlist-form {
    max-width: 480px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    gap: var(--space-3);
}

.waitlist-input {
    flex: 1;
    padding: var(--space-3) var(--space-5);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--text-base);
    outline: none;
    transition: all var(--transition-base);
}

.waitlist-fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.waitlist-input-row {
    display: flex;
    gap: var(--space-3);
}

.waitlist-input-row .waitlist-input {
    flex: 1;
}

.waitlist-input select,
select.waitlist-input {
    appearance: none;
    cursor: pointer;
}

.btn-cta-full {
    width: 100%;
    padding: var(--space-3) var(--space-5);
}

.waitlist-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.waitlist-input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.18);
}

.waitlist-social-proof {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    margin-top: var(--space-4);
}

.waitlist-social-proof strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.waitlist-privacy {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
    margin-top: var(--space-2);
}

.waitlist-success {
    max-width: 480px;
    margin: 0 auto;
}

.waitlist-success p {
    font-size: var(--text-lg);
    color: #fff;
    font-weight: 600;
}

/* ═══ FOOTER ═══ */
.landing-footer {
    background: #1a1008;
    padding: var(--space-12) var(--space-8) var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto var(--space-8);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-brand {
    font-size: var(--text-lg);
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: #78716c;
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-1);
}

.footer-col a {
    color: #78716c;
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.landing-footer .copyright {
    color: #57534e;
    font-size: var(--text-xs);
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }
}

/* ═══ DEMO TIMELINE ═══ */
#demo {
    position: relative;
    overflow: hidden;
}

#demo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(0, 162, 244, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.demo-timeline {
    margin-top: var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    position: relative;
}

.demo-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--border-default) 10%, var(--border-default) 90%, transparent);
    transform: translateX(-50%);
}

.demo-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    position: relative;
    z-index: 1;
}

.demo-step-reverse {
    direction: rtl;
}
.demo-step-reverse > * {
    direction: ltr;
}

.demo-step-content {
    padding: var(--space-6);
}

.demo-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 50%;
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-4);
    box-shadow: 0 0 0 4px var(--bg-surface), 0 0 20px rgba(249, 115, 22, 0.3);
}

.demo-step-content h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.demo-step-content p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

.demo-step-screenshot {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-default);
    background: var(--bg-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.demo-step-screenshot:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(249, 115, 22, 0.2);
}

.demo-step-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-step-screenshot-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    border: none;
    background: none;
    box-shadow: none;
}

.demo-step-screenshot-duo:hover {
    transform: none;
    box-shadow: none;
}

.demo-step-screenshot-duo img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-default);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.demo-step-screenshot-duo img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(249, 115, 22, 0.2);
}

/* Lightbox */
.demo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: preloader-fade-in 0.3s ease;
}

.demo-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ═══ SCROLL ANIMATIONS ═══ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger delays */
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }
.fade-up[data-delay="5"] { transition-delay: 0.5s; }
.fade-up[data-delay="6"] { transition-delay: 0.6s; }
.fade-up[data-delay="7"] { transition-delay: 0.7s; }
.fade-up[data-delay="8"] { transition-delay: 0.8s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
        padding: 120px var(--space-6) 60px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-mascot {
        width: 280px;
        height: 280px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .demo-step {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .demo-step-reverse {
        direction: ltr;
    }
    .demo-timeline::before {
        left: 18px;
    }
    .demo-step-content {
        padding-left: var(--space-12);
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: var(--space-3) var(--space-4);
    }

    .landing-section {
        padding: 60px var(--space-5);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

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

    .carousel-viewport {
        height: 300px;
    }

    .carousel-card {
        width: 200px;
        margin-left: -100px;
        height: 280px;
        margin-top: -140px;
    }

    .carousel-card-hint {
        display: none;
    }

    .carousel-card-icon {
        width: 52px;
        height: 52px;
    }

    .carousel-card-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Overlay = bottom sheet on mobile */
    .skill-overlay {
        align-items: flex-end;
    }

    .skill-overlay-content {
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-height: 70vh;
        transform: translateY(100%) scale(1);
    }

    .skill-overlay.active .skill-overlay-content {
        transform: translateY(0) scale(1);
    }

    .steps-layout {
        flex-direction: column;
        align-items: center;
    }

    .steps-layout::before {
        display: none;
    }

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

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

    .demo-step-screenshot-duo {
        grid-template-columns: 1fr;
    }
    .demo-step-content {
        padding-left: var(--space-10);
    }

    .hero-content {
        padding: 90px var(--space-5) 40px;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .nav-links {
        display: none;
    }

    .btn-nav-waitlist {
        display: none;
    }

    .hero-mascot {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .waitlist-input-group,
    .waitlist-input-row {
        flex-direction: column;
    }

    .hero-social-proof {
        flex-direction: column;
        text-align: center;
    }

    .carousel-card {
        width: 180px;
        margin-left: -90px;
        height: 260px;
        margin-top: -130px;
    }

    .carousel-viewport {
        height: 280px;
    }

    .hero-mascot {
        width: 180px;
        height: 180px;
    }

    .btn-nav-waitlist {
        display: none;
    }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    #preloader {
        display: none !important;
    }
    body.preloader-active {
        overflow: auto;
    }
    .hero::before {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-mascot,
    .about-avatar img,
    .section-cta .cta-avatar img {
        animation: none !important;
    }
    .hero h1 .gradient-text {
        animation: none !important;
    }
    .hero-eyebrow,
    .hero h1,
    .hero-subtitle,
    .hero-cta,
    .hero-right {
        animation: none !important;
        opacity: 1 !important;
        clip-path: none !important;
        transform: none !important;
    }
    .scroll-indicator {
        animation: none !important;
    }
    .carousel-card {
        transition: none !important;
    }
    .carousel-card-inner {
        transition: none !important;
    }
    .skill-overlay,
    .skill-overlay-content {
        transition: none !important;
    }
    .demo-step-screenshot,
    .demo-step-screenshot-duo img {
        transition: none !important;
    }
    .demo-step-screenshot:hover,
    .demo-step-screenshot-duo img:hover {
        transform: none;
    }
}
