<?php

declare(strict_types=1);

$pageTitle = 'HVSR VAULT';

?>
<!DOCTYPE html>
<html lang="fr">

<head>

<meta charset="UTF-8">

<meta
    name="viewport"
    content="width=device-width, initial-scale=1.0"
>

<meta
    name="robots"
    content="noindex, nofollow"
>

<title>
    <?= htmlspecialchars($pageTitle, ENT_QUOTES, 'UTF-8') ?>
</title>

<style>

:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --text: #152033;
    --muted: #667085;
    --border: #dce3ec;
    --primary: #0057b8;
    --primary-dark: #003f87;
    --success: #147a47;
    --sidebar: #0b2342;
    --sidebar-dark: #071a31;
    --shadow: 0 16px 45px rgba(19, 39, 68, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at top right,
            rgba(0, 87, 184, .08),
            transparent 30%
        ),
        var(--bg);
}

button {
    font-family: inherit;
}


/* =========================================================
   APPLICATION
   ========================================================= */

.vault-app {
    min-height: 100vh;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.vault-sidebar {

    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: 260px;

    display: flex;
    flex-direction: column;

    color: #fff;

    background:
        linear-gradient(
            180deg,
            var(--sidebar),
            var(--sidebar-dark)
        );

    box-shadow:
        12px 0 40px rgba(7, 26, 49, .12);
}


/* BRAND */

.vault-brand {

    min-height: 86px;

    padding: 20px 22px;

    display: flex;
    align-items: center;

    gap: 13px;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.vault-brand-mark {

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #0057b8,
            #0878e1
        );

    box-shadow:
        0 8px 22px rgba(0,87,184,.35);

    font-size: 21px;
    font-weight: 900;
}

.vault-brand-text strong,
.vault-brand-text small {

    display: block;
}

.vault-brand-text strong {

    font-size: 16px;

    letter-spacing:
        .05em;
}

.vault-brand-text small {

    margin-top: 4px;

    color: #91a5bd;

    font-size: 11px;
}


/* STATUS */

.vault-status {

    margin: 20px 16px;

    padding: 13px;

    display: flex;
    align-items: center;

    gap: 11px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 12px;

    background:
        rgba(255,255,255,.04);
}

.vault-status-dot {

    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #25c77a;

    box-shadow:
        0 0 0 5px
        rgba(37,199,122,.12);
}

.vault-status strong,
.vault-status small {

    display: block;
}

.vault-status strong {

    font-size: 12px;
}

.vault-status small {

    margin-top: 4px;

    color: #8ea2bb;

    font-size: 10px;
}


/* NAVIGATION */

.vault-navigation {

    padding: 0 12px;
}

.vault-navigation-title {

    display: block;

    padding:
        13px 10px 8px;

    color: #7389a3;

    font-size: 10px;

    font-weight: 800;

    letter-spacing:
        .12em;
}

.vault-navigation-title-bottom {

    margin-top: 18px;
}

.vault-nav-link {

    min-height: 44px;

    margin: 3px 0;

    padding: 10px 12px;

    display: flex;
    align-items: center;

    gap: 11px;

    border-radius: 9px;

    color: #b8c6d8;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        .18s ease;
}

.vault-nav-link:hover {

    color: #fff;

    background:
        rgba(255,255,255,.06);
}

.vault-nav-link.active {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0057b8,
            #0878e1
        );

    box-shadow:
        0 8px 20px
        rgba(0,87,184,.22);
}

.vault-nav-icon {

    width: 22px;

    text-align: center;

    font-size: 16px;
}


/* SIDEBAR FOOTER */

.vault-sidebar-footer {

    margin-top: auto;

    padding: 18px;
}

.vault-protection {

    padding: 13px;

    display: flex;
    align-items: center;

    gap: 10px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 11px;

    background:
        rgba(255,255,255,.035);
}

.vault-protection-icon {

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: #55d99a;

    background:
        rgba(37,199,122,.12);

    font-weight: 900;
}

.vault-protection strong,
.vault-protection small {

    display: block;
}

.vault-protection strong {

    font-size: 11px;
}

.vault-protection small {

    margin-top: 3px;

    color: #8196ae;

    font-size: 9px;
}


/* =========================================================
   MAIN
   ========================================================= */

.vault-main {

    margin-left: 260px;

    min-height: 100vh;
}


/* TOPBAR */

.vault-topbar {

    position: sticky;

    top: 0;

    z-index: 10;

    min-height: 74px;

    padding:
        0 34px;

    display: flex;
    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    background:
        rgba(255,255,255,.94);

    border-bottom:
        1px solid
        rgba(220,227,236,.9);

    backdrop-filter:
        blur(14px);
}

.vault-topbar-title span,
.vault-topbar-title strong {

    display: block;
}

.vault-topbar-title span {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing:
        .08em;
}

.vault-topbar-title strong {

    margin-top: 3px;

    font-size: 16px;
}


/* USER */

.vault-user {

    display: flex;
    align-items: center;

    gap: 11px;
}

.vault-user-text {

    text-align: right;
}

.vault-user-text span,
.vault-user-text strong {

    display: block;
}

.vault-user-text span {

    color: var(--muted);

    font-size: 10px;
}

.vault-user-text strong {

    margin-top: 2px;

    font-size: 12px;
}

.vault-user-avatar {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #0878e1
        );

    font-weight: 900;
}


/* CONTENT */

.vault-content {

    width:
        min(
            1400px,
            calc(100% - 68px)
        );

    margin: 0 auto;

    padding:
        38px 0 60px;
}


/* =========================================================
   PAGE HEADING
   ========================================================= */

.vault-page-heading {

    margin-bottom: 24px;

    display: flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap: 24px;
}

.vault-eyebrow {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing:
        .13em;
}

.vault-page-heading h1 {

    margin:
        6px 0 8px;

    font-size: 38px;

    line-height:
        1.05;
}

.vault-page-heading p {

    margin: 0;

    color: var(--muted);

    line-height:
        1.6;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.vault-actions {

    display: flex;

    gap: 9px;
}

.vault-button {

    min-height: 44px;

    padding:
        11px 17px;

    display: inline-flex;

    align-items: center;

    justify-content:
        center;

    gap: 7px;

    border: 0;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition:
        .18s ease;
}

.vault-button:hover {

    transform:
        translateY(-1px);
}

.vault-button-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #0878e1
        );

    box-shadow:
        0 10px 24px
        rgba(0,87,184,.20);
}

.vault-button-secondary {

    color: var(--text);

    background:
        #eef2f7;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.vault-breadcrumb {

    min-height: 48px;

    margin-bottom: 16px;

    padding:
        0 16px;

    display: flex;

    align-items: center;

    gap: 9px;

    border:
        1px solid
        var(--border);

    border-radius: 11px;

    background:
        #fff;

    color:
        var(--muted);

    font-size: 12px;

    box-shadow:
        0 8px 25px
        rgba(19,39,68,.04);
}

.vault-breadcrumb strong {

    color: var(--text);
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.vault-toolbar {

    margin-bottom: 18px;

    padding:
        14px 16px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 15px;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background:
        #fff;

    box-shadow:
        var(--shadow);
}

.vault-toolbar-left {

    display: flex;

    gap: 9px;
}


/* =========================================================
   PANEL
   ========================================================= */

.vault-panel {

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background:
        #fff;

    box-shadow:
        var(--shadow);
}

.vault-panel-header {

    min-height: 76px;

    padding:
        18px 22px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    border-bottom:
        1px solid
        #e7edf3;
}

.vault-panel-header span {

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing:
        .1em;
}

.vault-panel-header h2 {

    margin:
        4px 0 0;

    font-size: 19px;
}

.vault-panel-info {

    color: var(--muted);

    font-size: 12px;
}


/* EMPTY */

.vault-empty {

    padding:
        70px 25px;

    text-align:
        center;
}

.vault-empty-icon {

    width: 72px;
    height: 72px;

    margin:
        0 auto 18px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    color: var(--primary);

    background:
        #edf5ff;

    font-size: 32px;
}

.vault-empty h2 {

    margin:
        0 0 8px;

    font-size: 21px;
}

.vault-empty p {

    max-width: 590px;

    margin:
        0 auto 25px;

    color:
        var(--muted);

    line-height:
        1.6;
}


/* =========================================================
   STORAGE
   ========================================================= */

.vault-storage {

    margin-top: 18px;

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 18px;

    border:
        1px solid
        var(--border);

    border-radius: 18px;

    background:
        #fff;

    box-shadow:
        var(--shadow);
}

.vault-storage-icon {

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    color: var(--primary);

    background:
        #edf5ff;

    font-size: 23px;
}

.vault-storage-main {

    flex: 1;
}

.vault-storage-heading {

    display: flex;

    justify-content:
        space-between;

    gap: 20px;
}

.vault-storage-heading span {

    display: block;

    color:
        var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing:
        .1em;
}

.vault-storage-heading strong {

    display: block;

    margin-top: 4px;
}

.vault-storage-heading > strong {

    font-size: 13px;
}

.vault-storage-bar {

    height: 10px;

    margin-top: 12px;

    overflow: hidden;

    border-radius: 999px;

    background:
        #e9eef5;
}

.vault-storage-progress {

    width: 0%;

    height: 100%;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #0878e1
        );
}

.vault-storage-main p {

    margin:
        9px 0 0;

    color:
        var(--muted);

    font-size: 11px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .vault-sidebar {

        width: 220px;
    }

    .vault-main {

        margin-left: 220px;
    }

    .vault-content {

        width:
            calc(100% - 36px);
    }

    .vault-page-heading {

        align-items:
            flex-start;

        flex-direction:
            column;
    }
}


@media (max-width: 700px) {

    .vault-sidebar {

        position:
            relative;

        width:
            100%;

        min-height:
            auto;
    }

    .vault-main {

        margin-left:
            0;
    }

    .vault-app {

        display:
            block;
    }

    .vault-topbar {

        padding:
            0 18px;
    }

    .vault-content {

        width:
            calc(100% - 28px);

        padding-top:
            24px;
    }

    .vault-actions,
    .vault-toolbar,
    .vault-toolbar-left {

        width:
            100%;

        flex-wrap:
            wrap;
    }

    .vault-button {

        flex:
            1;
    }

    .vault-user-text {

        display:
            none;
    }
}

</style>

</head>


<body>


<div class="vault-app">


<!-- =====================================================
     SIDEBAR
     ===================================================== -->

<aside class="vault-sidebar">


<div class="vault-brand">

    <div class="vault-brand-mark">
        H
    </div>

    <div class="vault-brand-text">

        <strong>
            HVSR VAULT
        </strong>

        <small>
            Stockage sécurisé
        </small>

    </div>

</div>


<div class="vault-status">

    <span class="vault-status-dot"></span>

    <div>

        <strong>
            Système opérationnel
        </strong>

        <small>
            Infrastructure HVSR
        </small>

    </div>

</div>


<nav class="vault-navigation">


<span class="vault-navigation-title">
    VAULT
</span>


<a
    href="/"
    class="vault-nav-link active"
>
    <span class="vault-nav-icon">
        📁
    </span>

    <span>
        Mes fichiers
    </span>
</a>


<a
    href="#"
    class="vault-nav-link"
>
    <span class="vault-nav-icon">
        💾
    </span>

    <span>
        Sauvegardes
    </span>
</a>


<a
    href="#"
    class="vault-nav-link"
>
    <span class="vault-nav-icon">
        🕘
    </span>

    <span>
        Historique
    </span>
</a>


<a
    href="#"
    class="vault-nav-link"
>
    <span class="vault-nav-icon">
        ♻
    </span>

    <span>
        Corbeille
    </span>
</a>


<span class="vault-navigation-title vault-navigation-title-bottom">
    CONFIGURATION
</span>


<a
    href="#"
    class="vault-nav-link"
>
    <span class="vault-nav-icon">
        ⚙
    </span>

    <span>
        Paramètres
    </span>
</a>


</nav>


<div class="vault-sidebar-footer">

    <div class="vault-protection">

        <div class="vault-protection-icon">
            ✓
        </div>

        <div>

            <strong>
                Protection active
            </strong>

            <small>
                Vos données sont protégées
            </small>

        </div>

    </div>

</div>


</aside>


<!-- =====================================================
     MAIN
     ===================================================== -->

<main class="vault-main">


<header class="vault-topbar">


<div class="vault-topbar-title">

    <span>
        HVSR VAULT
    </span>

    <strong>
        Gestionnaire de fichiers
    </strong>

</div>


<div class="vault-user">

    <div class="vault-user-text">

        <span>
            Serveur
        </span>

        <strong>
            srv18.hvsr.fr
        </strong>

    </div>


    <div class="vault-user-avatar">
        H
    </div>

</div>


</header>


<div class="vault-content">


<!-- TITRE -->

<section class="vault-page-heading">


<div>

<span class="vault-eyebrow">
    ESPACE DE STOCKAGE
</span>

<h1>
    Mes fichiers
</h1>

<p>
    Gérez vos fichiers et dossiers depuis votre espace
    sécurisé HVSR VAULT.
</p>

</div>


<div class="vault-actions">

<button
    type="button"
    class="vault-button vault-button-secondary"
>
    ⟳ Actualiser
</button>


<button
    type="button"
    class="vault-button vault-button-primary"
>
    ＋ Nouveau dossier
</button>

</div>


</section>


<!-- CHEMIN -->

<div class="vault-breadcrumb">

<span>
    ⌂
</span>

<strong>
    Mes fichiers
</strong>

</div>


<!-- ACTIONS -->

<section class="vault-toolbar">


<div class="vault-toolbar-left">

<button
    type="button"
    class="vault-button vault-button-primary"
>
    ⬆ Uploader des fichiers
</button>


<button
    type="button"
    class="vault-button vault-button-secondary"
>
    📁 Uploader un dossier
</button>

</div>


<div>

<button
    type="button"
    class="vault-button vault-button-secondary"
>
    ▦
</button>

</div>


</section>


<!-- FICHIERS -->

<section class="vault-panel">


<div class="vault-panel-header">


<div>

<span>
    VOTRE ESPACE
</span>

<h2>
    Fichiers et dossiers
</h2>

</div>


<div class="vault-panel-info">
    0 élément
</div>


</div>


<div class="vault-empty">


<div class="vault-empty-icon">
    📁
</div>


<h2>
    Votre espace est prêt
</h2>


<p>
    Créez votre premier dossier ou envoyez vos fichiers
    dans HVSR VAULT.
</p>


<div class="vault-actions">

<button
    type="button"
    class="vault-button vault-button-primary"
>
    ＋ Créer un dossier
</button>


<button
    type="button"
    class="vault-button vault-button-secondary"
>
    ⬆ Envoyer des fichiers
</button>

</div>


</div>


</section>


<!-- STOCKAGE -->

<section class="vault-storage">


<div class="vault-storage-icon">
    💾
</div>


<div class="vault-storage-main">


<div class="vault-storage-heading">


<div>

<span>
    ESPACE DE STOCKAGE
</span>

<strong>
    0 Go utilisés
</strong>

</div>


<strong>
    10 Go
</strong>


</div>


<div class="vault-storage-bar">

<div class="vault-storage-progress"></div>

</div>


<p>
    Votre espace de stockage est prêt à recevoir vos fichiers.
</p>


</div>


</section>


</div>


</main>


</div>


</body>

</html>
